Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_abuse.html.haml « application_settings « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea9bdbed9ae9e412f5c42966e4c9103f4eec05be (plain)
1
2
3
4
5
6
7
8
9
10
11
= form_for @application_setting, url: reporting_admin_application_settings_path(anchor: 'js-abuse-settings'), html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      = f.label :abuse_notification_email, 'Abuse reports notification email', class: 'label-bold'
      = f.text_field :abuse_notification_email, class: 'form-control gl-form-input'
      .form-text.text-muted
        Abuse reports will be sent to this address if it is set. Abuse reports are always available in the admin area.

  = f.submit 'Save changes', class: "gl-button btn btn-success"