49 lines
1.7 KiB
Text
49 lines
1.7 KiB
Text
= form_for [:admin, @application], url: @url, html: {role: 'form'} do |f|
|
|
= form_errors(application)
|
|
|
|
= content_tag :div, class: 'form-group row' do
|
|
.col-sm-2.col-form-label
|
|
= f.label :name
|
|
.col-sm-10
|
|
= f.text_field :name, class: 'form-control'
|
|
= doorkeeper_errors_for application, :name
|
|
|
|
= content_tag :div, class: 'form-group row' do
|
|
.col-sm-2.col-form-label
|
|
= f.label :redirect_uri
|
|
.col-sm-10
|
|
= f.text_area :redirect_uri, class: 'form-control'
|
|
= doorkeeper_errors_for application, :redirect_uri
|
|
%span.form-text.text-muted
|
|
Use one line per URI
|
|
- if Doorkeeper.configuration.native_redirect_uri
|
|
%span.form-text.text-muted
|
|
Use
|
|
%code= Doorkeeper.configuration.native_redirect_uri
|
|
for local tests
|
|
|
|
= content_tag :div, class: 'form-group row' do
|
|
.col-sm-2.col-form-label.pt-0
|
|
= f.label :trusted
|
|
.col-sm-10
|
|
= f.check_box :trusted
|
|
%span.form-text.text-muted
|
|
Trusted applications are automatically authorized on GitLab OAuth flow.
|
|
|
|
= content_tag :div, class: 'form-group row' do
|
|
.col-sm-2.col-form-label.pt-0
|
|
= f.label :confidential
|
|
.col-sm-10
|
|
= f.check_box :confidential
|
|
%span.form-text.text-muted
|
|
= _('The application will be used where the client secret can be kept confidential. Native mobile apps and Single Page Apps are considered non-confidential.')
|
|
|
|
.form-group.row
|
|
.col-sm-2.col-form-label.pt-0
|
|
= f.label :scopes
|
|
.col-sm-10
|
|
= render 'shared/tokens/scopes_form', prefix: 'doorkeeper_application', token: application, scopes: @scopes
|
|
|
|
.form-actions
|
|
= f.submit 'Submit', class: "btn btn-success wide"
|
|
= link_to "Cancel", admin_applications_path, class: "btn btn-cancel"
|