f706a973c2
- The `scopes_form` partial can be used in the `admin/applications` view as well - Don't allow partials to access instance variables directly. Instead, pass in the instance variables as local variables, and use `local_assigns.fetch` to assert that the variables are passed in as expected. - Change a few instances of `render :partial` to `render` - Remove an instance of `required: false` in a view, since this is the default - Inline many instances of a local variable (`ip = 'ip'`) in `auth_spec`
25 lines
856 B
Text
25 lines
856 B
Text
= form_for application, url: doorkeeper_submit_path(application), html: {role: 'form'} do |f|
|
|
= form_errors(application)
|
|
|
|
.form-group
|
|
= f.label :name, class: 'label-light'
|
|
= f.text_field :name, class: 'form-control', required: true
|
|
|
|
.form-group
|
|
= f.label :redirect_uri, class: 'label-light'
|
|
= f.text_area :redirect_uri, class: 'form-control', required: true
|
|
|
|
%span.help-block
|
|
Use one line per URI
|
|
- if Doorkeeper.configuration.native_redirect_uri
|
|
%span.help-block
|
|
Use
|
|
%code= Doorkeeper.configuration.native_redirect_uri
|
|
for local tests
|
|
|
|
.form-group
|
|
= f.label :scopes, class: 'label-light'
|
|
= render 'shared/tokens/scopes_form', prefix: 'doorkeeper_application', token: application, scopes: @scopes
|
|
|
|
.prepend-top-default
|
|
= f.submit 'Save application', class: "btn btn-create"
|