added icon for token introspection enabled clients

pull/627/head
Justin Richer 2014-06-26 12:59:19 -04:00
parent 683776e031
commit 9a3bf818cd
2 changed files with 4 additions and 0 deletions

View File

@ -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;
},

View File

@ -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>