about summary refs log tree commit diff
path: root/app/views/doorkeeper/authorized_applications/index.html.haml
blob: a75c431293cf05b055fc5b207c7dcb30d802a43b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- content_for :page_title do
  Authorized apps

%p
  You can register a new OAuth2 app
  = link_to 'here', oauth_applications_path

%table.table
  %thead
    %tr
      %th App
      %th
  - @applications.each do |application|
    %tr
      %td= application.name
      %td= link_to 'Revoke', oauth_authorized_application_path(application), method: :delete