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
632ff67d
Commit
632ff67d
authored
Nov 20, 2020
by
Tifenn Guillas
Browse files
Merge branch '153-fix-sq-issues' into 'develop'
Fix bug compilation Closes
#153
See merge request
!165
parents
2a7a2124
acb95e49
Pipeline
#3509
passed with stages
in 8 minutes and 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/app/auth/auth.effects.ts
View file @
632ff67d
...
@@ -105,7 +105,7 @@ export class AuthEffects {
...
@@ -105,7 +105,7 @@ export class AuthEffects {
parseJWTAction$
=
this
.
actions$
.
pipe
(
parseJWTAction$
=
this
.
actions$
.
pipe
(
ofType
(
authActions
.
PARSE_JWT
),
ofType
(
authActions
.
PARSE_JWT
),
switchMap
((
action
:
authActions
.
ParseJwtAction
)
=>
{
switchMap
((
action
:
authActions
.
ParseJwtAction
)
=>
{
const
jwt
=
jwt_decode
(
action
.
payload
);
const
jwt
:
any
=
jwt_decode
(
action
.
payload
);
if
(
environment
.
ssoName
===
'
auth0
'
)
{
if
(
environment
.
ssoName
===
'
auth0
'
)
{
return
of
({
type
:
'
[No Action]
'
+
authActions
.
PARSE_JWT
});
return
of
({
type
:
'
[No Action]
'
+
authActions
.
PARSE_JWT
});
}
else
{
}
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