2017-08-17 22:00:37 +05:30
|
|
|
- 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])
|
2018-03-17 18:26:18 +05:30
|
|
|
.scope-description= t scope, scope: [:doorkeeper, :scope_desc]
|