Skip to content

Commit 9a3bf81

Browse files
committed
added icon for token introspection enabled clients
1 parent 683776e commit 9a3bf81

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

openid-connect-server-webapp/src/main/webapp/resources/js/client.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ var ClientView = Backbone.View.extend({
198198
$('.clientid-full', this.el).hide();
199199

200200
this.$('.dynamically-registered').tooltip({title: 'This client was dynamically registered'});
201+
this.$('.allow-introspection').tooltip({title: 'This client can perform token introspection'});
201202

202203
return this;
203204
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@
3838
<% if (client.dynamicallyRegistered) { %>
3939
<span class="label label-inverse dynamically-registered"><i class="icon-globe icon-white"></i></span>
4040
<% } %>
41+
<% if (client.allowIntrospection) { %>
42+
<span class="label label-inverse allow-introspection"><i class="icon-eye-open icon-white"></i></span>
43+
<% } %>
4144
<small class="muted" title="<%= hoverCreationDate %>">Registered <%= displayCreationDate %></small>
4245
</div>
4346
</td>

0 commit comments

Comments
 (0)