_fields.html.haml 1.2 KB

123456789101112131415161718
  1. .fields-group
  2. = f.input :name, wrapper: :with_label, label: t('activerecord.attributes.doorkeeper/application.name')
  3. .fields-group
  4. = f.input :website, wrapper: :with_label, label: t('activerecord.attributes.doorkeeper/application.website')
  5. .fields-group
  6. = f.input :redirect_uri, wrapper: :with_block_label, label: t('activerecord.attributes.doorkeeper/application.redirect_uri'), hint: t('doorkeeper.applications.help.redirect_uri')
  7. %p.hint= t('doorkeeper.applications.help.native_redirect_uri', native_redirect_uri: Doorkeeper.configuration.native_redirect_uri)
  8. .field-group
  9. .input.with_block_label
  10. %label= t('activerecord.attributes.doorkeeper/application.scopes')
  11. %span.hint= t('simple_form.hints.defaults.scopes')
  12. - Doorkeeper.configuration.scopes.group_by { |s| s.split(':').first }.each do |k, v|
  13. = f.input :scopes, label: false, hint: false, collection: v.sort, wrapper: :with_block_label, include_blank: false, label_method: lambda { |scope| safe_join([content_tag(:samp, scope, class: class_for_scope(scope)), content_tag(:span, t("doorkeeper.scopes.#{scope}"), class: 'hint')]) }, selected: f.object.scopes.all, required: false, as: :check_boxes, collection_wrapper_tag: 'ul', item_wrapper_tag: 'li'