From 957ab73646d2d74de0a3671f4b0567fb6b5d628e Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Fri, 17 Nov 2023 15:55:16 +0000 Subject: [PATCH] add missing return type --- lib/core/src/lib/auth/services/oidc-authentication.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/src/lib/auth/services/oidc-authentication.service.ts b/lib/core/src/lib/auth/services/oidc-authentication.service.ts index 41d8c4c27f..7e0b85aeab 100644 --- a/lib/core/src/lib/auth/services/oidc-authentication.service.ts +++ b/lib/core/src/lib/auth/services/oidc-authentication.service.ts @@ -79,7 +79,7 @@ export class OidcAuthenticationService extends BaseAuthenticationService { return this.appConfig.oauth2.implicitFlow; } - isAuthCodeFlow() { + isAuthCodeFlow(): boolean { return this.appConfig.oauth2.codeFlow; }