forked from engineering/cloudservices
update account model
parent
9836554be7
commit
7897ff2165
|
@ -15,6 +15,7 @@ export interface AccountInterface extends Document {
|
|||
technician: boolean,
|
||||
director: boolean,
|
||||
},
|
||||
ramLimitNotification: number,
|
||||
root: boolean,
|
||||
hash: boolean,
|
||||
salt: string,
|
||||
|
@ -36,6 +37,7 @@ const Account: Schema = new Schema({
|
|||
technician: Boolean,
|
||||
director: Boolean,
|
||||
},
|
||||
ramLimitNotification: Number,
|
||||
root: Boolean,
|
||||
hash: Boolean,
|
||||
salt: String,
|
||||
|
|
Loading…
Reference in New Issue