6c9e26a2a0
This moves API::ResourceLabelEventsHelpers::EVENTABLE_TYPES to a class method in a separate helper module, allowing EE to redefine it without having to directly modify the source code.
13 lines
284 B
Ruby
13 lines
284 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module Helpers
|
|
module ResourceLabelEventsHelpers
|
|
def self.eventable_types
|
|
# This is a method instead of a constant, allowing EE to more easily
|
|
# extend it.
|
|
[Issue, MergeRequest]
|
|
end
|
|
end
|
|
end
|
|
end
|