Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
820
Merge Requests
51
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
427ad6f4
Commit
427ad6f4
authored
25 minutes ago
by
Emiliano Balbuena
Browse files
Options
Download
(fix): Correctly inject authorized user
parent
87b08fbc
goal/pro-sso
1 merge request
!656
SSO for Pro sites
Pipeline
#97094349
running with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/app/common/services/sso.service.ts
View file @
427ad6f4
...
...
@@ -42,7 +42,9 @@ export class SsoService {
}
);
this
.
session
.
inject
(
window
.
Minds
.
user
);
if
(
authorization
&&
authorization
.
user
)
{
this
.
session
.
inject
(
authorization
.
user
);
}
}
}
catch
(
e
)
{
console
.
error
(
e
);
...
...
This diff is collapsed.
Please
register
or
sign in
to comment