update account model

merge-requests/4/head
Matthew 2020-05-03 17:49:40 -04:00
parent 9836554be7
commit 7897ff2165
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ export interface AccountInterface extends Document {
technician: boolean, technician: boolean,
director: boolean, director: boolean,
}, },
ramLimitNotification: number,
root: boolean, root: boolean,
hash: boolean, hash: boolean,
salt: string, salt: string,
@ -36,6 +37,7 @@ const Account: Schema = new Schema({
technician: Boolean, technician: Boolean,
director: Boolean, director: Boolean,
}, },
ramLimitNotification: Number,
root: Boolean, root: Boolean,
hash: Boolean, hash: Boolean,
salt: String, salt: String,