aboutsummaryrefslogtreecommitdiff
path: root/src/server/authentication/AuthenticationManager.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-10-08 19:54:52 -0400
committerbobzel <zzzman@gmail.com>2020-10-08 19:54:52 -0400
commitc63d7ab902135165eaafc89bcea15805ff10f11b (patch)
tree7831cfc1fc726b51c7f40803ea2d20173f43986b /src/server/authentication/AuthenticationManager.ts
parent3fe20d8730cf0d18fa18956105ee92cf434b6350 (diff)
load entire DB in one message.
Diffstat (limited to 'src/server/authentication/AuthenticationManager.ts')
-rw-r--r--src/server/authentication/AuthenticationManager.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/authentication/AuthenticationManager.ts b/src/server/authentication/AuthenticationManager.ts
index 36363e3cf..84abd41a2 100644
--- a/src/server/authentication/AuthenticationManager.ts
+++ b/src/server/authentication/AuthenticationManager.ts
@@ -48,7 +48,8 @@ export let postSignup = (req: Request, res: Response, next: NextFunction) => {
email,
password,
userDocumentId: Utils.GenerateGuid(),
- sharingDocumentId: Utils.GenerateGuid()
+ sharingDocumentId: Utils.GenerateGuid(),
+ cacheDocumentIds: ""
} as Partial<DashUserModel>;
const user = new User(model);