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

_incidents.html.haml « operations « settings « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b1b0a00380e9e4f75a9931bbb2305d821f9a8f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
- templates = []
- setting = project_incident_management_setting
- templates = setting.available_issue_templates.map { |t| [t.name, t.key] }

%section.settings.no-animate.qa-incident-management-settings{ data: { qa_selector: 'incidents_settings_content' } }
  .settings-header
    %h3{ :class => "h4" }= _('Incidents')
    %button.btn.js-settings-toggle{ type: 'button' }
      = _('Expand')
    %p
      = _('Action to take when receiving an alert.')
      = link_to help_page_path('user/project/integrations/prometheus', anchor: 'taking-action-on-incidents-ultimate') do
        = _('More information')
  .settings-content
    = form_for @project, url: project_settings_operations_path(@project), method: :patch do |f|
      = form_errors(@project.incident_management_setting)
      .form-group
        = f.fields_for :incident_management_setting_attributes, setting do |form|
          .form-group
            = form.check_box :create_issue, data: { qa_selector: 'create_issue_checkbox' }
            = form.label :create_issue, _('Create an issue. Issues are created for each alert triggered.'), class: 'form-check-label'
          .form-group.col-sm-8
            = form.label :issue_template_key, class: 'label-bold' do
              = _('Issue template (optional)')
              = link_to icon('question-circle'), help_page_path('user/project/description_templates', anchor: 'creating-issue-templates'), target: '_blank', rel: 'noopener noreferrer'
            .select-wrapper
              = form.select :issue_template_key, templates, {include_blank: 'No template selected'}, class: "form-control select-control", data: { qa_selector: 'incident_templates_dropdown' }
              = icon('chevron-down')
          .form-group
            = form.check_box :send_email
            = form.label :send_email, _('Send a separate email notification to Developers.'), class: 'form-check-label'
      = f.submit _('Save changes'), class: 'btn btn-success', data: { qa_selector: 'save_changes_button' }