debian-mirror-gitlab/lib/api/helpers/resource_label_events_helpers.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
471 B
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
module API
module Helpers
module ResourceLabelEventsHelpers
2021-01-29 00:20:46 +05:30
def self.feature_category_per_eventable_type
2019-07-07 11:18:12 +05:30
# This is a method instead of a constant, allowing EE to more easily
# extend it.
2021-01-29 00:20:46 +05:30
{
2021-12-11 22:18:48 +05:30
Issue => :team_planning,
2021-01-29 00:20:46 +05:30
MergeRequest => :code_review
}
2019-07-07 11:18:12 +05:30
end
end
end
end
2019-12-04 20:38:33 +05:30
2021-06-08 01:23:25 +05:30
API::Helpers::ResourceLabelEventsHelpers.prepend_mod_with('API::Helpers::ResourceLabelEventsHelpers')