Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
anis
anis-client
Commits
acb95e49
Commit
acb95e49
authored
Nov 20, 2020
by
Tifenn Guillas
Browse files
Fix bug compilation
parent
2bad7c04
Changes
1
Show whitespace changes
Inline
Side-by-side
src/app/auth/auth.effects.ts
View file @
acb95e49
...
...
@@ -105,7 +105,7 @@ export class AuthEffects {
parseJWTAction$
=
this
.
actions$
.
pipe
(
ofType
(
authActions
.
PARSE_JWT
),
switchMap
((
action
:
authActions
.
ParseJwtAction
)
=>
{
const
jwt
=
jwt_decode
(
action
.
payload
);
const
jwt
:
any
=
jwt_decode
(
action
.
payload
);
if
(
environment
.
ssoName
===
'
auth0
'
)
{
return
of
({
type
:
'
[No Action]
'
+
authActions
.
PARSE_JWT
});
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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