Fixing smth

merge-requests/1/merge
Bsian 2019-11-17 01:13:59 +00:00
parent cc0416c67e
commit 942754f64a
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ export interface AccountInterface extends Document {
engineer: boolean engineer: boolean
}, },
root: boolean root: boolean
ssInit: boolean hash: boolean
} }
const Account: Schema = new Schema({ const Account: Schema = new Schema({
@ -35,7 +35,7 @@ const Account: Schema = new Schema({
engineer: Boolean, engineer: Boolean,
}, },
root: Boolean, root: Boolean,
ssInit: Boolean, hash: Boolean,
}); });
export default model<AccountInterface>('Account', Account); export default model<AccountInterface>('Account', Account);