Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/applications/index.html.haml')
-rw-r--r--app/views/admin/applications/index.html.haml22
1 files changed, 0 insertions, 22 deletions
diff --git a/app/views/admin/applications/index.html.haml b/app/views/admin/applications/index.html.haml
deleted file mode 100644
index d550278710e..00000000000
--- a/app/views/admin/applications/index.html.haml
+++ /dev/null
@@ -1,22 +0,0 @@
-%h3.page-title
- System OAuth applications
-%p.light
- System OAuth application does not belong to certain user and can be managed only by admins
-%hr
-%p= link_to 'New Application', new_admin_application_path, class: 'btn btn-success'
-%table.table.table-striped
- %thead
- %tr
- %th Name
- %th Callback URL
- %th Clients
- %th
- %th
- %tbody.oauth-applications
- - @applications.each do |application|
- %tr{:id => "application_#{application.id}"}
- %td= link_to application.name, admin_application_path(application)
- %td= application.redirect_uri
- %td= application.access_tokens.map(&:resource_owner_id).uniq.count
- %td= link_to 'Edit', edit_admin_application_path(application), class: 'btn btn-link'
- %td= render 'delete_form', application: application