The server is crashing because of the line isAdmin: { isAdmin: boolean, default: false },
CodePudding user response:
It's probably crashing because isAdmin
is not valid field of mongoose schema, instead your schema declaration schould looks like
new mongoose.Schema({
...// rest of your schema
isAdmin: {type: Boolean, default: false}
})
so simply replace
isAdmin: boolean
with type: Boolean