diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-12 19:46:06 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-12 19:46:06 +0100 |
commit | 1aa477ac2f0e9195497899691bb5cc16a7034c01 (patch) | |
tree | c331188d6955cbdd12e78bc6ccdb2329b5dddf67 /app/views/doorkeeper/applications | |
parent | aab9f57e369c492bad03bcf15411394897314b4d (diff) |
Customized more doorkeeper views, only logged in users can create oauth apps
Diffstat (limited to 'app/views/doorkeeper/applications')
-rw-r--r-- | app/views/doorkeeper/applications/index.html.erb | 26 | ||||
-rw-r--r-- | app/views/doorkeeper/applications/index.html.haml | 19 |
2 files changed, 19 insertions, 26 deletions
diff --git a/app/views/doorkeeper/applications/index.html.erb b/app/views/doorkeeper/applications/index.html.erb deleted file mode 100644 index 4a3df8305..000000000 --- a/app/views/doorkeeper/applications/index.html.erb +++ /dev/null @@ -1,26 +0,0 @@ -<div class="page-header"> - <h1><%= t('.title') %></h1> -</div> - -<p><%= link_to t('.new'), new_oauth_application_path, class: 'btn btn-success' %></p> - -<table class="table table-striped"> - <thead> - <tr> - <th><%= t('.name') %></th> - <th><%= t('.callback_url') %></th> - <th></th> - <th></th> - </tr> - </thead> - <tbody> - <% @applications.each do |application| %> - <tr id="application_<%= application.id %>"> - <td><%= link_to application.name, oauth_application_path(application) %></td> - <td><%= application.redirect_uri %></td> - <td><%= link_to t('doorkeeper.applications.buttons.edit'), edit_oauth_application_path(application), class: 'btn btn-link' %></td> - <td><%= render 'delete_form', application: application %></td> - </tr> - <% end %> - </tbody> -</table> diff --git a/app/views/doorkeeper/applications/index.html.haml b/app/views/doorkeeper/applications/index.html.haml new file mode 100644 index 000000000..908f664f2 --- /dev/null +++ b/app/views/doorkeeper/applications/index.html.haml @@ -0,0 +1,19 @@ +- content_for :page_title do + Applications + +%p= link_to t('.new'), new_oauth_application_path, class: 'btn btn-success' + +%table.table + %thead + %tr + %th= t('.name') + %th= t('.callback_url') + %th + %th + %tbody + - @applications.each do |application| + %tr + %td= link_to application.name, oauth_application_path(application) + %td= application.redirect_uri + %td= link_to t('doorkeeper.applications.buttons.edit'), edit_oauth_application_path(application), class: 'btn btn-link' + %td= render 'delete_form', application: application |