Skip to content

Commit 54e3b7e

Browse files
committed
added new messages for JWK Set handling
1 parent 49c8804 commit 54e3b7e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

openid-connect-server-webapp/src/main/webapp/resources/js/locale/en/messages.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,9 @@
8282
"initiate-login": "Initiate Login",
8383
"initiate-login-help": "URL to initiate login on the client",
8484
"introspection": "Introspection",
85-
"jwk-set": "JWK Set",
86-
"jwk-set-help": "URL for the client's JSON Web Key set",
85+
"jwk-set": "Public Key Set",
86+
"jwk-set-help": "URL for the client's JSON Web Key set (must be reachable by the server)",
87+
"jwk-set-value-help": "URL for the client's JSON Web Key set (must be reachable by the server)",
8788
"logo": "Logo",
8889
"logo-help": "URL that points to a logo image, will be displayed on approval page",
8990
"main": "Main",
@@ -451,6 +452,9 @@
451452
"authorize": "Authorize",
452453
"deny": "Deny"
453454
}
455+
},
456+
"error": {
457+
"title": "Error"
454458
}
455459

456460
}

openid-connect-server-webapp/src/main/webapp/resources/template/client.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ <h1 data-i18n="client.client-form.edit"></h1>
511511
</div>
512512
<div class="controls" id="jwks">
513513
<textarea class="input-xlarge" placeholder="{ &quot;keys&quot: [ ] }" maxlength="4000" type="text" rows="8"><%- (jwks != null ? JSON.stringify(jwks, null, ' ') : "") %></textarea>
514-
<p class="help-block" data-i18n="client.client-form.jwk-set-value-help">JSON Web Key set</p>
514+
<p class="help-block" data-i18n="client.client-form.jwk-set-value-help">Key set value (must be a valid JWK Set formatted key)</p>
515515
</div>
516516
</div>
517517
</div>

0 commit comments

Comments
 (0)