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

settings.rb « incident_management « concerns « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13a047ec10634d6c183b982b98348a6c6ff2a575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module IncidentManagement
  module Settings
    include Gitlab::Utils::StrongMemoize

    delegate :send_email?, to: :incident_management_setting

    def incident_management_setting
      strong_memoize(:incident_management_setting) do
        project.incident_management_setting ||
          project.build_incident_management_setting
      end
    end

    def process_issues?
      incident_management_setting.create_issue?
    end
  end
end