9 lines
472 B
Text
9 lines
472 B
Text
- scopes = local_assigns.fetch(:scopes)
|
|
- prefix = local_assigns.fetch(:prefix)
|
|
- token = local_assigns.fetch(:token)
|
|
|
|
- scopes.each do |scope|
|
|
%fieldset.form-group.form-check
|
|
= check_box_tag "#{prefix}[scopes][]", scope, token.scopes.include?(scope), id: "#{prefix}_scopes_#{scope}", class: 'form-check-input'
|
|
= label_tag ("#{prefix}_scopes_#{scope}"), scope, class: 'label-bold form-check-label'
|
|
.text-secondary= t scope, scope: [:doorkeeper, :scope_desc]
|