Show a delete button on the OAuth application view
This commit is contained in:
parent
53fe84fbef
commit
1e0bdda2f5
2 changed files with 8 additions and 1 deletions
|
@ -24,4 +24,9 @@
|
|||
|
||||
<p><%= t'oauth_clients.show.support_notice' %></p>
|
||||
|
||||
<p><%= link_to t('oauth_clients.show.edit'), edit_oauth_client_url(@client_application.user.display_name, @client_application) %></p>
|
||||
<table>
|
||||
<tr>
|
||||
<td><%= button_to t('oauth_clients.show.edit'), edit_oauth_client_path(@client_application.user.display_name, @client_application), :method => :get %></td>
|
||||
<td><%= button_to t('oauth_clients.show.delete'), oauth_client_path(@client_application.user.display_name, @client_application), :method => :delete, :confirm => t('oauth_clients.show.confirm') %></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue