2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Helpers
|
|
|
|
module DiscussionsHelpers
|
2021-01-29 00:20:46 +05:30
|
|
|
def self.feature_category_per_noteable_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
|
|
|
{
|
2021-12-11 22:18:48 +05:30
|
|
|
Issue => :team_planning,
|
2021-01-29 00:20:46 +05:30
|
|
|
Snippet => :snippets,
|
|
|
|
MergeRequest => :code_review,
|
|
|
|
Commit => :code_review
|
|
|
|
}
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
API::Helpers::DiscussionsHelpers.prepend_mod_with('API::Helpers::DiscussionsHelpers')
|