2018-11-08 19:23:39 +05:30
|
|
|
= form_for [:admin, @application], url: @url, html: {role: 'form'} do |f|
|
2016-06-02 11:05:42 +05:30
|
|
|
= form_errors(application)
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
= content_tag :div, class: 'form-group row' do
|
2019-09-04 21:01:54 +05:30
|
|
|
.col-sm-2.col-form-label
|
|
|
|
= f.label :name
|
2015-04-26 12:48:37 +05:30
|
|
|
.col-sm-10
|
|
|
|
= f.text_field :name, class: 'form-control'
|
|
|
|
= doorkeeper_errors_for application, :name
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
= content_tag :div, class: 'form-group row' do
|
2019-09-04 21:01:54 +05:30
|
|
|
.col-sm-2.col-form-label
|
|
|
|
= f.label :redirect_uri
|
2015-04-26 12:48:37 +05:30
|
|
|
.col-sm-10
|
|
|
|
= f.text_area :redirect_uri, class: 'form-control'
|
|
|
|
= doorkeeper_errors_for application, :redirect_uri
|
2018-11-08 19:23:39 +05:30
|
|
|
%span.form-text.text-muted
|
2015-04-26 12:48:37 +05:30
|
|
|
Use one line per URI
|
|
|
|
- if Doorkeeper.configuration.native_redirect_uri
|
2018-11-08 19:23:39 +05:30
|
|
|
%span.form-text.text-muted
|
2015-04-26 12:48:37 +05:30
|
|
|
Use
|
|
|
|
%code= Doorkeeper.configuration.native_redirect_uri
|
|
|
|
for local tests
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
= content_tag :div, class: 'form-group row' do
|
2019-09-04 21:01:54 +05:30
|
|
|
.col-sm-2.col-form-label.pt-0
|
|
|
|
= f.label :trusted
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-sm-10
|
|
|
|
= f.check_box :trusted
|
2018-11-08 19:23:39 +05:30
|
|
|
%span.form-text.text-muted
|
2017-09-10 17:25:29 +05:30
|
|
|
Trusted applications are automatically authorized on GitLab OAuth flow.
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-group.row
|
2019-09-04 21:01:54 +05:30
|
|
|
.col-sm-2.col-form-label.pt-0
|
|
|
|
= f.label :scopes
|
2017-08-17 22:00:37 +05:30
|
|
|
.col-sm-10
|
|
|
|
= render 'shared/tokens/scopes_form', prefix: 'doorkeeper_application', token: application, scopes: @scopes
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
.form-actions
|
2018-12-05 23:21:45 +05:30
|
|
|
= f.submit 'Submit', class: "btn btn-success wide"
|
2017-08-17 22:00:37 +05:30
|
|
|
= link_to "Cancel", admin_applications_path, class: "btn btn-cancel"
|