Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add logs to investigate user logout issue #770

Merged
merged 1 commit into from
Oct 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export class ManageDelegateService {
localStorage.setItem('permission_organisation_id',this.getDelegatedOrg);
}
setTimeout(() => {
console.log('Angular - Navigate to Home');
this.route.navigateByUrl('/home');
}, 100);
})
Expand Down
3 changes: 2 additions & 1 deletion src/app/services/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export class AuthService {
renewAccessToken(url: string = '') {
let data: any
data = this.getRefreshToken().toPromise().then((refreshToken: any) => {
console.log('Angular - Core Refresh Token Call');
return this.renewToken(refreshToken || '').toPromise().then((tokenInfo: TokenInfo) => {
this.workerService.storeTokenInWorker(tokenInfo);
return this.createSession(tokenInfo.refresh_token).toPromise().then(() => {
Expand Down Expand Up @@ -319,4 +320,4 @@ export class AuthService {
})
);
}
}
}