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();
|
$('.clientid-full', this.el).hide();
|
||||||
|
|
||||||
this.$('.dynamically-registered').tooltip({title: 'This client was dynamically registered'});
|
this.$('.dynamically-registered').tooltip({title: 'This client was dynamically registered'});
|
||||||
|
this.$('.allow-introspection').tooltip({title: 'This client can perform token introspection'});
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
|
|
@ -38,6 +38,9 @@
|
||||||
<% if (client.dynamicallyRegistered) { %>
|
<% if (client.dynamicallyRegistered) { %>
|
||||||
<span class="label label-inverse dynamically-registered"><i class="icon-globe icon-white"></i></span>
|
<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>
|
<small class="muted" title="<%= hoverCreationDate %>">Registered <%= displayCreationDate %></small>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in New Issue