Skip to content
Snippets Groups Projects
Commit a488b057 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Cleaning up unused views

parent fc198a8b
No related branches found
No related tags found
No related merge requests found
= 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'
- content_for :page_title do
Edit app
= render 'form', application: @application
- 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?' }
- content_for :page_title do
New app
= render 'form', application: @application
- 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?' }
- 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment