Updated scheduler to check bans once a day.
This commit is contained in:
parent
8fc699924e
commit
2b52fe7f2f
2 changed files with 1 additions and 2 deletions
|
|
@ -22,5 +22,5 @@ const userBanSchema = require('../schemas/userBanSchema');
|
|||
|
||||
module.exports.kickoff = function(){
|
||||
//Process expired bans every night at midnight
|
||||
cron.schedule('* * * * *', ()=>{userBanSchema.processExpiredBans()},{scheduled: true, timezone: "UTC"});
|
||||
cron.schedule('0 0 * * *', ()=>{userBanSchema.processExpiredBans()},{scheduled: true, timezone: "UTC"});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue