debian-mirror-gitlab/app/models/discussion_note.rb

21 lines
612 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
# A note in a non-diff discussion on an issue, merge request, commit, or snippet.
#
# A note of this type can be resolvable.
class DiscussionNote < Note
2019-12-04 20:38:33 +05:30
# This prepend must stay here because the `validates` below depends on it.
prepend_if_ee('EE::DiscussionNote') # rubocop: disable Cop/InjectEnterpriseEditionModule
2017-08-17 22:00:37 +05:30
# Names of all implementers of `Noteable` that support discussions.
2018-12-13 13:39:08 +05:30
def self.noteable_types
%w(MergeRequest Issue Commit Snippet)
end
2017-08-17 22:00:37 +05:30
2018-12-13 13:39:08 +05:30
validates :noteable_type, inclusion: { in: noteable_types }
2017-08-17 22:00:37 +05:30
def discussion_class(*)
Discussion
end
end