mirror of
https://github.com/wassname/talk.git
synced 2026-07-06 05:17:19 +08:00
12 lines
252 B
JavaScript
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' },
|
|
},
|
|
};
|