[notifications] include tracked changes in email notifications

GitOrigin-RevId: 01011739ef183e0fca606a5d9cbf6c23eaa14644
This commit is contained in:
Domagoj Kriskovic
2025-12-03 09:06:33 +00:00
committed by Copybot
parent 38ca13c26f
commit 580fc2bad6
2 changed files with 12 additions and 1 deletions
@@ -94,7 +94,13 @@ async function setDocument(req, res) {
'finished receiving set document request from api (docupdater)'
)
await Modules.promises.hooks.fire('docModified', projectId, docId, ranges)
await Modules.promises.hooks.fire(
'docModified',
projectId,
docId,
ranges,
lastUpdatedAt
)
res.json(result)
}
+5
View File
@@ -8,3 +8,8 @@ export type CommentAddedEvent = {
threadId: string
messageId: string
}
export type ProjectModifiedEvent = {
projectId: string
timestamp: number
}