Merge branch 'master' of gitlab.libraryofcode.org:engineering/cloudservices-rewrite

merge-requests/1/merge
Matthew 2019-11-16 20:33:43 -05:00
commit 6f0741b03b
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 2 additions and 2 deletions

View File

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