From 5ff66187a0d25927cb436d16517dbf409ee893b4 Mon Sep 17 00:00:00 2001 From: Tim Alby Date: Wed, 3 Oct 2018 16:00:10 +0100 Subject: [PATCH] remove unused confirmed field from user model --- services/web/app/coffee/models/User.coffee | 1 - 1 file changed, 1 deletion(-) diff --git a/services/web/app/coffee/models/User.coffee b/services/web/app/coffee/models/User.coffee index 23b59375f4..ef9a93b2f2 100644 --- a/services/web/app/coffee/models/User.coffee +++ b/services/web/app/coffee/models/User.coffee @@ -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 : ''}