fix(auth): redirect to learn after sign in (#37114)

This commit is contained in:
mrugesh
2019-10-08 08:15:36 -07:00
committed by Ahmad Abdolsaheb
parent 23a3287d8f
commit 20ca046a2a
3 changed files with 3 additions and 3 deletions

View File

@ -180,7 +180,7 @@ function createGetPasswordlessAuth(app) {
'success',
'Success! You have signed in to your account. Happy Coding!'
);
return res.redirectWithFlash(`${homeLocation}`);
return res.redirectWithFlash(`${homeLocation}/learn`);
})
.subscribe(() => {}, next)
);