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

19 lines
473 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
{
Issue => :issue_tracking,
MergeRequest => :code_review
}
2019-07-07 11:18:12 +05:30
end
end
end
end
2019-12-04 20:38:33 +05:30
API::Helpers::ResourceLabelEventsHelpers.prepend_if_ee('EE::API::Helpers::ResourceLabelEventsHelpers')