From 3a2de7097431180d42b81192c416e89756fe6a61 Mon Sep 17 00:00:00 2001 From: Alf Eaton Date: Wed, 11 May 2022 12:25:46 +0100 Subject: [PATCH] Merge pull request #7783 from overleaf/jpa-clear-dropbox-notifications [web] unconditionally clear dropbox notifications after linking again GitOrigin-RevId: 6ca265ed1f1a060b6c5472111e98680a6bc092ff --- .../web/app/src/Features/Notifications/NotificationsBuilder.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/web/app/src/Features/Notifications/NotificationsBuilder.js b/services/web/app/src/Features/Notifications/NotificationsBuilder.js index b3d4d68de2..b8be4d8715 100644 --- a/services/web/app/src/Features/Notifications/NotificationsBuilder.js +++ b/services/web/app/src/Features/Notifications/NotificationsBuilder.js @@ -242,6 +242,9 @@ NotificationsBuilder.promises = { redundantPersonalSubscription: function (affiliation, user) { return promisifyAll(redundantPersonalSubscription(affiliation, user)) }, + dropboxDuplicateProjectNames(userId) { + return promisifyAll(dropboxDuplicateProjectNames(userId)) + }, } module.exports = NotificationsBuilder