Skip to content

Commit 1da730b

Browse files
author
Vikas Agarwal
committed
Supporting every other day schedule
Clean up of email action bus events
1 parent a090b60 commit 1da730b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

connect/constants.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module.exports = {
44
every10minutes: '*/10 * * * *',
55
hourly: '0 * * * *',
66
daily: '0 7 * * *', // every day at 7am
7+
everyOtherDay: '0 7 */2 * *', // every other day at 7 am
78
weekly: '0 7 * * 6', // every Saturday at 7am
89
},
910

@@ -59,8 +60,8 @@ module.exports = {
5960
},
6061
EMAIL: {
6162
// TODO: after a proper named email topic is created, this is being used as the email event's topic
62-
GENERAL: 'notifications.action.email.connect.project.specificationModified',
63-
BUNDLED: 'notifications.action.email.connect.project.specificationModified',
63+
GENERAL: 'notifications.action.email.connect.project.notifications.generic',
64+
BUNDLED: 'notifications.action.email.connect.project.notifications.bundled',
6465
},
6566
},
6667
};

0 commit comments

Comments
 (0)