Browse Source

Cleaning up unused views

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
a488b05726
6 changed files with 0 additions and 87 deletions
  1. +0
    -9
      app/views/doorkeeper/applications/_form.html.haml
  2. +0
    -4
      app/views/doorkeeper/applications/edit.html.haml
  3. +0
    -19
      app/views/doorkeeper/applications/index.html.haml
  4. +0
    -4
      app/views/doorkeeper/applications/new.html.haml
  5. +0
    -35
      app/views/doorkeeper/applications/show.html.haml
  6. +0
    -16
      app/views/doorkeeper/authorized_applications/index.html.haml

+ 0
- 9
app/views/doorkeeper/applications/_form.html.haml View File

@ -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'

+ 0
- 4
app/views/doorkeeper/applications/edit.html.haml View File

@ -1,4 +0,0 @@
- content_for :page_title do
Edit app
= render 'form', application: @application

+ 0
- 19
app/views/doorkeeper/applications/index.html.haml View File

@ -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?' }

+ 0
- 4
app/views/doorkeeper/applications/new.html.haml View File

@ -1,4 +0,0 @@
- content_for :page_title do
New app
= render 'form', application: @application

+ 0
- 35
app/views/doorkeeper/applications/show.html.haml View File

@ -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?' }

+ 0
- 16
app/views/doorkeeper/authorized_applications/index.html.haml View File

@ -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…
Cancel
Save