2016-03-12 19:46:06 +01:00
|
|
|
- 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
|
2016-03-14 17:41:13 +01:00
|
|
|
%th App
|
2016-03-12 19:46:06 +01:00
|
|
|
%th
|
|
|
|
- @applications.each do |application|
|
|
|
|
%tr
|
|
|
|
%td= application.name
|
2016-03-14 17:41:13 +01:00
|
|
|
%td= link_to 'Revoke', oauth_authorized_application_path(application), method: :delete
|