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

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

module InternalIdEnums
  def self.usage_resources
    # when adding new resource, make sure it doesn't conflict with EE usage_resources
    {
        issues: 0,
        merge_requests: 1,
        deployments: 2,
        milestones: 3,
        epics: 4,
        ci_pipelines: 5,
        operations_feature_flags: 6,
        operations_user_lists: 7,
        alert_management_alerts: 8,
        sprints: 9 # iterations
    }
  end
end

InternalIdEnums.prepend_if_ee('EE::InternalIdEnums')