mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 01:38:35 +08:00
12 lines
266 B
JavaScript
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' },
|
|
},
|
|
};
|