debian-mirror-gitlab/app/views/admin/applications/_form.html.haml

45 lines
1.6 KiB
Text
Raw Normal View History

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
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.
2020-03-13 15:44:24 +05:30
= 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.')
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
2021-01-03 14:25:43 +05:30
= f.submit 'Submit', class: "gl-button btn btn-success wide"
= link_to "Cancel", admin_applications_path, class: "gl-button btn btn-cancel"