diff --git a/src/app/api/tasks/task-notifications.service.ts b/src/app/api/tasks/task-notifications.service.ts index a235d22a7..a49b72e10 100644 --- a/src/app/api/tasks/task-notifications.service.ts +++ b/src/app/api/tasks/task-notifications.service.ts @@ -274,6 +274,9 @@ export class TaskNotificationsService extends BaseService { } catch (e: unknown) { console.error(`Failed to find ClientNotification for task ${updatedTask.id}`, e) } + } else if (updatedTask.assigneeType === AssigneeType.internalUser) { + shouldCreateNotification && + (await this.notificationService.create(NotificationTaskActions.CompletedByIU, updatedTask, { disableEmail: true })) } }