From 13faf9b4f90b8517d3561ae368aa555846a361e3 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Fri, 27 Dec 2019 14:08:04 -0500 Subject: [PATCH] comma in homepath type in AccountInterface --- src/models/Account.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/Account.ts b/src/models/Account.ts index 812fa4a..651d451 100644 --- a/src/models/Account.ts +++ b/src/models/Account.ts @@ -3,7 +3,7 @@ import { Document, Schema, model } from 'mongoose'; export interface AccountInterface extends Document { username: string, userID: string, - homepath: string + homepath: string, emailAddress: string, createdBy: string, createdAt: Date,