From 988539279b6f7d0b73e7e235c241da18467e8467 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sat, 16 Nov 2019 23:58:11 -0500 Subject: [PATCH] account changes --- src/models/Account.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/models/Account.ts b/src/models/Account.ts index 593bc24..0f99acb 100644 --- a/src/models/Account.ts +++ b/src/models/Account.ts @@ -16,7 +16,8 @@ export interface AccountInterface extends Document { }, root: boolean, hash: string, - salt: string + salt: string, + authTag: Buffer } const Account: Schema = new Schema({ @@ -36,6 +37,7 @@ const Account: Schema = new Schema({ root: Boolean, hash: String, salt: String, + authTag: Buffer, }); export default model('Account', Account);