Skip to content

Commit b74b8d1

Browse files
committed
load-interstitials-after-loading-user-session-in-oauth
1 parent 04d2375 commit b74b8d1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/app/authorize/pages/authorize/authorize.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ export class AuthorizeComponent {
7979
}
8080

8181
private isUserLoggedIn(userSession: any): boolean {
82+
// Users that are not logged in will not be able to load the the authorize.component page
83+
// with an exception of users that have an invalid OAUTH URL
84+
// Those will load this component to display the error message by the component `app-oauth-error`
85+
// see this exception on src/app/guards/authorize.guard.ts
8286
return !!userSession?.userSession?.userInfo
8387
}
8488

0 commit comments

Comments
 (0)