|
|
|
@ -268,7 +268,9 @@ export class AuthService { |
|
|
|
public defaultUrl(isAuthenticated: boolean, authState?: AuthState, path?: string, params?: any): UrlTree { |
|
|
|
let result: UrlTree = null; |
|
|
|
if (isAuthenticated) { |
|
|
|
if (!path || path === 'login' || this.forceDefaultPlace(authState, path, params)) { |
|
|
|
if (authState.authUser.authority === Authority.PRE_VERIFICATION_TOKEN) { |
|
|
|
result = this.router.parseUrl('login/mfa'); |
|
|
|
} else if (!path || path === 'login' || this.forceDefaultPlace(authState, path, params)) { |
|
|
|
if (this.redirectUrl) { |
|
|
|
const redirectUrl = this.redirectUrl; |
|
|
|
this.redirectUrl = null; |
|
|
|
|