We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d2375 commit b74b8d1Copy full SHA for b74b8d1
src/app/authorize/pages/authorize/authorize.component.ts
@@ -79,6 +79,10 @@ export class AuthorizeComponent {
79
}
80
81
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
86
return !!userSession?.userSession?.userInfo
87
88
0 commit comments