remove unused confirmed field from user model

This commit is contained in:
Tim Alby 2018-10-03 16:00:10 +01:00
parent 752658f773
commit 5ff66187a0

View file

@ -19,7 +19,6 @@ UserSchema = new Schema
institution : {type : String, default : ''}
hashedPassword : String
isAdmin : {type : Boolean, default : false}
confirmed : {type : Boolean, default : false}
signUpDate : {type : Date, default: () -> new Date() }
lastLoggedIn : {type : Date}
lastLoginIp : {type : String, default : ''}