add missing return type

This commit is contained in:
Denys Vuika
2023-11-17 15:55:16 +00:00
parent df329ca2e1
commit 957ab73646
@@ -79,7 +79,7 @@ export class OidcAuthenticationService extends BaseAuthenticationService {
return this.appConfig.oauth2.implicitFlow;
}
isAuthCodeFlow() {
isAuthCodeFlow(): boolean {
return this.appConfig.oauth2.codeFlow;
}