From 5a5bda6bb33bae0a316b9c619710add72cd9a3ab Mon Sep 17 00:00:00 2001 From: Okechi Onyeje Date: Tue, 1 Jan 2019 15:45:11 -0500 Subject: [PATCH] T-954157790482088: change from user.tagferId to user.uid - in this context user.uid is the tagferId --- src/ups/auth/handlers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ups/auth/handlers.js b/src/ups/auth/handlers.js index fc24253..a98b938 100644 --- a/src/ups/auth/handlers.js +++ b/src/ups/auth/handlers.js @@ -110,7 +110,7 @@ function signup(req, res) { authDao.createNewUser(user).then( user => { const sessionId = authDao.createNewSessionId(user.uid); try { - profileDao.createInitialProfiles(profile,user.tagferId).then (() => { + profileDao.createInitialProfiles(profile,user.uid).then (() => { res.json({sessionId}); }).catch((error) => { res.status(http.BAD_REQUEST).json({error});