Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
lr-service
Commits
8c1a3aa9
Commit
8c1a3aa9
authored
2 years ago
by
tushar5526
Browse files
Options
Download
Patches
Plain Diff
update error msg
parent
e939f753
main
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/app.service.ts
+5
-2
src/app.service.ts
with
5 additions
and
2 deletions
+5
-2
src/app.service.ts
+
5
−
2
View file @
8c1a3aa9
...
...
@@ -39,7 +39,10 @@ export class AppService {
process
.
env
.
ENCODED_CLIENTID_CLIENTSECRETS_CASA
,
);
}
catch
(
e
)
{
throw
new
HttpException
(
'
Get registered on CASA
'
,
HttpStatus
.
NOT_FOUND
);
throw
new
HttpException
(
'
Get registered on CASA or invalid creds
'
,
HttpStatus
.
NOT_FOUND
,
);
}
const
access_token
=
res
.
access_token
;
...
...
@@ -240,7 +243,7 @@ export class AppService {
rollNo
:
studentData
.
RollNo
.
toString
(),
dob
:
studentData
.
DateOfBirth
,
};
console
.
log
()
console
.
log
()
;
if
(
searchRes
.
length
)
{
// Update Data
updateEntity
(
...
...
This diff is collapsed.
Click to expand it.
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!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets