From 471a412a9d2df584071d1d65f61c6ae46ea045aa Mon Sep 17 00:00:00 2001 From: Sergey Beryozkin Date: Tue, 12 Sep 2023 18:06:43 +0100 Subject: [PATCH] Restore missing parameters in OIDC Dev UI client cred and password SwaggerUI/GraphQL handlers --- .../deployment/src/main/resources/dev-ui/qwc-oidc-provider.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/extensions/oidc/deployment/src/main/resources/dev-ui/qwc-oidc-provider.js b/extensions/oidc/deployment/src/main/resources/dev-ui/qwc-oidc-provider.js index 0f3ab5f10ea74..fd55fda88612b 100644 --- a/extensions/oidc/deployment/src/main/resources/dev-ui/qwc-oidc-provider.js +++ b/extensions/oidc/deployment/src/main/resources/dev-ui/qwc-oidc-provider.js @@ -493,6 +493,7 @@ export class QwcOidcProvider extends QwcHotReloadElement { this.jsonRpc .testServiceWithPassword({ tokenUrl: this._getTokenUrl(), + serviceUrl: null, clientId: this._getClientId(), clientSecret: this._getClientSecret(), username: this._passwordGrantUsername, @@ -510,6 +511,7 @@ export class QwcOidcProvider extends QwcHotReloadElement { this.jsonRpc .testServiceWithPassword({ tokenUrl: this._getTokenUrl(), + serviceUrl: null, clientId: this._getClientId(), clientSecret: this._getClientSecret(), username: this._passwordGrantUsername, @@ -542,6 +544,7 @@ export class QwcOidcProvider extends QwcHotReloadElement { this.jsonRpc .testServiceWithClientCred({ tokenUrl: this._getTokenUrl(), + serviceUrl: null, clientId: this._getClientId(), clientSecret: this._getClientSecret() }) @@ -557,6 +560,7 @@ export class QwcOidcProvider extends QwcHotReloadElement { this.jsonRpc .testServiceWithClientCred({ tokenUrl: this._getTokenUrl(), + serviceUrl: null, clientId: this._getClientId(), clientSecret: this._getClientSecret() })