From 9761baded0d85bd831947de4607296fb029579ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9da=20Housni=20Alaoui?= Date: Fri, 27 Nov 2020 09:11:56 +0100 Subject: [PATCH] fix(revoketokenandlogout): 'customParameters' should accept boolean --- projects/lib/src/oauth-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/lib/src/oauth-service.ts b/projects/lib/src/oauth-service.ts index 6f0bce0f..3673cb61 100644 --- a/projects/lib/src/oauth-service.ts +++ b/projects/lib/src/oauth-service.ts @@ -2592,7 +2592,7 @@ export class OAuthService extends AuthConfig implements OnDestroy { * up any security credentials associated with the authorization */ public revokeTokenAndLogout( - customParameters: object = {}, + customParameters: boolean | object = {}, ignoreCorsIssues = false ): Promise { let revokeEndpoint = this.revocationEndpoint;