2022-10-11 01:57:18 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Helpers
|
|
|
|
module ResourceEventsHelpers
|
|
|
|
def self.eventable_types
|
|
|
|
# This is a method instead of a constant, allowing EE to more easily extend it.
|
|
|
|
{
|
|
|
|
Issue => { feature_category: :team_planning, id_field: 'IID' },
|
2023-03-17 16:20:25 +05:30
|
|
|
MergeRequest => { feature_category: :code_review_workflow, id_field: 'IID' }
|
2022-10-11 01:57:18 +05:30
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
API::Helpers::ResourceEventsHelpers.prepend_mod_with('API::Helpers::ResourceEventsHelpers')
|