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

12 lines
252 B
JavaScript

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