Updated scheduler to check bans once a day.

This commit is contained in:
rainbow napkin 2024-11-29 15:43:41 -05:00
parent 8fc699924e
commit 2b52fe7f2f
2 changed files with 1 additions and 2 deletions

View file

@ -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"});
}