Skip to content

Commit

Permalink
Remove unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianGosebrink committed Oct 2, 2023
1 parent 749b142 commit e3fb0ed
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,16 +216,6 @@ export class AuthStateService {
return hasAccessToken && hasIdToken;
}

getAccessTokenScopes(configuration: OpenIdConfiguration): string {
if (!this.isAuthenticated(configuration)) {
return null;
}

const authResult = this.getAuthenticationResult(configuration);

return authResult.scope ?? '';
}

private decodeURIComponentSafely(token: string): string {
if (token) {
return decodeURIComponent(token);
Expand Down

0 comments on commit e3fb0ed

Please sign in to comment.