Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
m4lab_tv1
User Account
Commits
78329c24
Commit
78329c24
authored
Sep 21, 2021
by
Rosanny Sihombing
Browse files
add customized error when user data is not found
parent
a9b0353c
Changes
1
Hide whitespace changes
Inline
Side-by-side
routes/account.ts
View file @
78329c24
...
...
@@ -106,10 +106,14 @@ export = function (app:any, config:any, passport:any, lang:string) {
res
.
redirect
(
'
/login
'
)
}
else
{
let
loggedInUser
=
await
getLoggedInUserData
(
req
.
user
.
email
)
res
.
render
(
lang
+
'
/account/home
'
,
{
user
:
loggedInUser
});
if
(
!
loggedInUser
)
{
console
.
error
(
"
user data is not found
"
)
res
.
status
(
500
).
render
(
lang
+
'
/500
'
,
{
error
:
"
Your data is not found. Please try again.
"
})
}
else
{
res
.
render
(
lang
+
'
/account/home
'
,
{
user
:
loggedInUser
});
}
}
});
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment