Update data in MongoDB Model in intervals
I am making a login system. I am trying to make user wait for 5 minutes when login attempts exceed 3 times, here is the User Model: const UserSchema = new mongoose.Schema({ // Other Model Schemas loginAttempts: { type: Number,…