diff options
| author | Sam Wilkins <samwilkins333@gmail.com> | 2019-02-24 23:45:43 -0500 |
|---|---|---|
| committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-02-24 23:45:43 -0500 |
| commit | a160304a54ee0219f48faee8a7402503f2160902 (patch) | |
| tree | d41e7cc0ad7fb621d0a2d891eeda77766dc84021 /src/server/authentication/models | |
| parent | 7e106c6aa0bab72ae757453f88dd7616b4be0c5c (diff) | |
lost password email implementation beginning
Diffstat (limited to 'src/server/authentication/models')
| -rw-r--r-- | src/server/authentication/models/User.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/server/authentication/models/User.ts b/src/server/authentication/models/User.ts index ed2952e48..9e6c525c3 100644 --- a/src/server/authentication/models/User.ts +++ b/src/server/authentication/models/User.ts @@ -1,6 +1,5 @@ //@ts-ignore import * as bcrypt from "bcrypt-nodejs"; -import * as crypto from "crypto"; //@ts-ignore import * as mongoose from "mongoose"; var url = 'mongodb://localhost:27017/Dash' @@ -46,8 +45,7 @@ const userSchema = new mongoose.Schema({ password: String, passwordResetToken: String, passwordResetExpires: Date, - - workspaces: Array, + userDoc: String, facebook: String, twitter: String, |
