Cleaning up unused views
parent
fc198a8b4c
commit
a488b05726
|
@ -1,9 +0,0 @@
|
||||||
= simple_form_for application, url: doorkeeper_submit_path(application) do |f|
|
|
||||||
= f.error_notification
|
|
||||||
|
|
||||||
.form-inputs
|
|
||||||
= f.input :name
|
|
||||||
= f.input :redirect_uri, hint: t('doorkeeper.applications.help.redirect_uri')
|
|
||||||
= f.input :scopes, hint: t('doorkeeper.applications.help.scopes')
|
|
||||||
.form-actions
|
|
||||||
= f.button :submit, 'Save'
|
|
|
@ -1,4 +0,0 @@
|
||||||
- content_for :page_title do
|
|
||||||
Edit app
|
|
||||||
|
|
||||||
= render 'form', application: @application
|
|
|
@ -1,19 +0,0 @@
|
||||||
- content_for :page_title do
|
|
||||||
Apps
|
|
||||||
|
|
||||||
%p= link_to 'Add new', new_oauth_application_path, class: 'btn btn-success'
|
|
||||||
|
|
||||||
%table.table
|
|
||||||
%thead
|
|
||||||
%tr
|
|
||||||
%th App
|
|
||||||
%th 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 'Edit', edit_oauth_application_path(application)
|
|
||||||
%td= link_to 'Delete', oauth_application_path(application), method: :delete, data: { confirm: 'Are you sure?' }
|
|
|
@ -1,4 +0,0 @@
|
||||||
- content_for :page_title do
|
|
||||||
New app
|
|
||||||
|
|
||||||
= render 'form', application: @application
|
|
|
@ -1,35 +0,0 @@
|
||||||
- content_for :page_title do
|
|
||||||
= @application.name
|
|
||||||
|
|
||||||
.row
|
|
||||||
.panel
|
|
||||||
.panel-heading General
|
|
||||||
.panel-row
|
|
||||||
%dt Name
|
|
||||||
%dd= @application.name
|
|
||||||
.panel-row
|
|
||||||
%dt Scopes:
|
|
||||||
%dd= @application.scopes
|
|
||||||
|
|
||||||
.panel.panel-full
|
|
||||||
.panel-heading Details
|
|
||||||
.panel-row
|
|
||||||
%dt Client ID:
|
|
||||||
%dd
|
|
||||||
%samp= @application.uid
|
|
||||||
.panel-row
|
|
||||||
%dt Secret:
|
|
||||||
%dd
|
|
||||||
%samp= @application.secret
|
|
||||||
|
|
||||||
.panel.panel-full
|
|
||||||
.panel-heading Callback URLs
|
|
||||||
- @application.redirect_uri.split.each do |uri|
|
|
||||||
.panel-row.panel-row-wider
|
|
||||||
%dt
|
|
||||||
%samp= uri
|
|
||||||
%dd= link_to 'Authorize', oauth_authorization_path(client_id: @application.uid, redirect_uri: uri, response_type: 'code')
|
|
||||||
|
|
||||||
.page-actions
|
|
||||||
= link_to fa_icon('edit'), edit_oauth_application_path(@application), class: 'btn btn-iconized'
|
|
||||||
= link_to fa_icon('trash'), oauth_application_path(@application), method: :delete, class: 'btn btn-iconized', data: { confirm: 'Are you sure?' }
|
|
|
@ -1,16 +0,0 @@
|
||||||
- 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
|
|
Loading…
Reference in New Issue