added icon for token introspection enabled clients
parent
683776e031
commit
9a3bf818cd
|
@ -198,6 +198,7 @@ var ClientView = Backbone.View.extend({
|
|||
$('.clientid-full', this.el).hide();
|
||||
|
||||
this.$('.dynamically-registered').tooltip({title: 'This client was dynamically registered'});
|
||||
this.$('.allow-introspection').tooltip({title: 'This client can perform token introspection'});
|
||||
|
||||
return this;
|
||||
},
|
||||
|
|
|
@ -38,6 +38,9 @@
|
|||
<% if (client.dynamicallyRegistered) { %>
|
||||
<span class="label label-inverse dynamically-registered"><i class="icon-globe icon-white"></i></span>
|
||||
<% } %>
|
||||
<% if (client.allowIntrospection) { %>
|
||||
<span class="label label-inverse allow-introspection"><i class="icon-eye-open icon-white"></i></span>
|
||||
<% } %>
|
||||
<small class="muted" title="<%= hoverCreationDate %>">Registered <%= displayCreationDate %></small>
|
||||
</div>
|
||||
</td>
|
||||
|
|
Loading…
Reference in New Issue