From ea1f20afc65992717f59bae5753b145281d471f3 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sat, 16 Nov 2019 19:24:08 -0500 Subject: [PATCH] Add bearer signatures to acc model --- src/models/Account.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/models/Account.ts b/src/models/Account.ts index db26a2c..b84f492 100644 --- a/src/models/Account.ts +++ b/src/models/Account.ts @@ -7,6 +7,7 @@ export interface AccountInterface extends Document { createdBy: string, createdAt: Date, locked: boolean, + bearerSignature: string, permissions: { support: boolean, staff: boolean, @@ -24,6 +25,7 @@ const Account: Schema = new Schema({ createdBy: String, createdAt: Date, locked: Boolean, + bearerSignature: String, permissions: { support: Boolean, staff: Boolean,