From e5a82e47ce3c885fb3b08dbc4d5f25f62ed39965 Mon Sep 17 00:00:00 2001 From: Domagoj Kriskovic Date: Fri, 16 Jan 2026 14:02:43 +0100 Subject: [PATCH] [notifications] Add support for reopened comment notifications (#30679) * [notifications] Refactor notification handling by using getProject utility function * [notifications] Add support for reopened comment notifications * rename to areNotificationsEnabled * added comment explaining why we are getting users GitOrigin-RevId: 7263d52e611c66baa39d8737d1d22740e592a3a0 --- services/web/types/module-hooks.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/services/web/types/module-hooks.ts b/services/web/types/module-hooks.ts index 9d35ad3fd8..1b8ef57486 100644 --- a/services/web/types/module-hooks.ts +++ b/services/web/types/module-hooks.ts @@ -15,6 +15,12 @@ export type CommentResolvedEvent = { threadId: string } +export type CommentReopenedEvent = { + projectId: string + userId: string + threadId: string +} + export type ProjectModifiedEvent = { projectId: string timestamp: number