summaryrefslogtreecommitdiff
path: root/lib/api/helpers/discussions_helpers.rb
blob: 94a5bf75c39bb66845279a22234013cf37b452e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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