10 lines
439 B
Text
10 lines
439 B
Text
- scopes = local_assigns.fetch(:scopes)
|
|
- prefix = local_assigns.fetch(:prefix)
|
|
- token = local_assigns.fetch(:token)
|
|
|
|
- scopes.each do |scope|
|
|
%fieldset
|
|
= check_box_tag "#{prefix}[scopes][]", scope, token.scopes.include?(scope), id: "#{prefix}_scopes_#{scope}"
|
|
= label_tag ("#{prefix}_scopes_#{scope}"), scope
|
|
%span= t(scope, scope: [:doorkeeper, :scopes])
|
|
.scope-description= t scope, scope: [:doorkeeper, :scope_desc]
|