Skip to content

Commit a3acb86

Browse files
authored
Merge pull request quarkusio#35888 from sberyozkin/keycloak_devservice_more_clientcred_fixes
Restore missing parameters in OIDC Dev UI client cred and password SwaggerUI/GraphQL handlers
2 parents 718a8d5 + 471a412 commit a3acb86

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

extensions/oidc/deployment/src/main/resources/dev-ui/qwc-oidc-provider.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,7 @@ export class QwcOidcProvider extends QwcHotReloadElement {
493493
this.jsonRpc
494494
.testServiceWithPassword({
495495
tokenUrl: this._getTokenUrl(),
496+
serviceUrl: null,
496497
clientId: this._getClientId(),
497498
clientSecret: this._getClientSecret(),
498499
username: this._passwordGrantUsername,
@@ -510,6 +511,7 @@ export class QwcOidcProvider extends QwcHotReloadElement {
510511
this.jsonRpc
511512
.testServiceWithPassword({
512513
tokenUrl: this._getTokenUrl(),
514+
serviceUrl: null,
513515
clientId: this._getClientId(),
514516
clientSecret: this._getClientSecret(),
515517
username: this._passwordGrantUsername,
@@ -542,6 +544,7 @@ export class QwcOidcProvider extends QwcHotReloadElement {
542544
this.jsonRpc
543545
.testServiceWithClientCred({
544546
tokenUrl: this._getTokenUrl(),
547+
serviceUrl: null,
545548
clientId: this._getClientId(),
546549
clientSecret: this._getClientSecret()
547550
})
@@ -557,6 +560,7 @@ export class QwcOidcProvider extends QwcHotReloadElement {
557560
this.jsonRpc
558561
.testServiceWithClientCred({
559562
tokenUrl: this._getTokenUrl(),
563+
serviceUrl: null,
560564
clientId: this._getClientId(),
561565
clientSecret: this._getClientSecret()
562566
})

0 commit comments

Comments
 (0)