debian-mirror-gitlab/lib/api/helpers/discussions_helpers.rb
2019-07-07 11:18:12 +05:30

13 lines
292 B
Ruby

# frozen_string_literal: true
module API
module Helpers
module DiscussionsHelpers
def self.noteable_types
# This is a method instead of a constant, allowing EE to more easily
# extend it.
[Issue, Snippet, MergeRequest, Commit]
end
end
end
end