Skip to content

Commit

Permalink
Remove application link in authorized app view
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeelias committed Mar 13, 2012
1 parent 1107607 commit e09c73e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/views/doorkeeper/authorized_applications/index.html.erb
Expand Up @@ -15,12 +15,11 @@
<tbody>
<% @applications.each do |application| %>
<tr>
<td><%= link_to application.name, application %></td>
<td><%= application.name %></td>
<td><%= application.created_at %></td>
<td><%= link_to 'Revoke', authorized_application_path(application), :confirm => 'Are you sure?', :method => :delete, :class => 'btn danger' %></td>
</tr>
<% end %>
</tbody>
</table>

</div>

0 comments on commit e09c73e

Please sign in to comment.