Skip to content

Commit

Permalink
Merge pull request #35888 from sberyozkin/keycloak_devservice_more_cl…
Browse files Browse the repository at this point in the history
…ientcred_fixes

Restore missing parameters in OIDC Dev UI client cred and password SwaggerUI/GraphQL handlers
  • Loading branch information
sberyozkin authored Sep 12, 2023
2 parents 718a8d5 + 471a412 commit a3acb86
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down Expand Up @@ -542,6 +544,7 @@ export class QwcOidcProvider extends QwcHotReloadElement {
this.jsonRpc
.testServiceWithClientCred({
tokenUrl: this._getTokenUrl(),
serviceUrl: null,
clientId: this._getClientId(),
clientSecret: this._getClientSecret()
})
Expand All @@ -557,6 +560,7 @@ export class QwcOidcProvider extends QwcHotReloadElement {
this.jsonRpc
.testServiceWithClientCred({
tokenUrl: this._getTokenUrl(),
serviceUrl: null,
clientId: this._getClientId(),
clientSecret: this._getClientSecret()
})
Expand Down

0 comments on commit a3acb86

Please sign in to comment.