Files
talk/plugins/talk-plugin-notifications-digest-hourly/index.js
T
2018-03-06 16:20:15 -07:00

12 lines
266 B
JavaScript

module.exports = {
typeDefs: `
enum DIGEST_FREQUENCY {
# HOURLY will queue up the notifications and send them hourly.
HOURLY
}
`,
notificationDigests: {
HOURLY: { cronTime: '0 * * * *', timeZone: 'America/New_York' },
},
};