]> git.openstreetmap.org Git - rails.git/blob - app/helpers/authorization_helper.rb
Merge remote-tracking branch 'upstream/pull/4764'
[rails.git] / app / helpers / authorization_helper.rb
1 module AuthorizationHelper
2   include ActionView::Helpers::TranslationHelper
3
4   def authorization_scope(scope)
5     html = []
6     html << t("oauth.scopes.#{scope}")
7     if Oauth::MODERATOR_SCOPES.include? scope
8       html << " "
9       html << role_icon_svg_tag("moderator", false, t("oauth.for_roles.moderator"), :class => "align-text-bottom")
10     end
11     safe_join(html)
12   end
13 end