2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-30 23:06:09 -04:00
|
|
|
# A discussion to wrap a single `Note` note on the root of an issue, merge request,
|
2017-04-04 18:27:23 -04:00
|
|
|
# commit, or snippet, that is not displayed as a discussion.
|
2017-04-06 11:05:57 -04:00
|
|
|
#
|
|
|
|
# A discussion of this type is never resolvable.
|
2017-03-09 20:29:11 -05:00
|
|
|
class IndividualNoteDiscussion < Discussion
|
2017-04-06 11:05:57 -04:00
|
|
|
def self.note_class
|
|
|
|
Note
|
2017-03-09 20:29:11 -05:00
|
|
|
end
|
|
|
|
|
2017-03-17 15:25:52 -04:00
|
|
|
def individual_note?
|
2017-03-09 20:29:11 -05:00
|
|
|
true
|
|
|
|
end
|
2017-04-24 13:24:34 -04:00
|
|
|
|
2019-02-06 05:31:46 -05:00
|
|
|
def can_convert_to_discussion?
|
2019-04-02 22:00:18 -04:00
|
|
|
noteable.supports_replying_to_individual_notes?
|
2019-02-06 05:31:46 -05:00
|
|
|
end
|
|
|
|
|
2020-08-18 17:09:57 -04:00
|
|
|
def convert_to_discussion!
|
|
|
|
first_note.becomes!(Discussion.note_class).to_discussion
|
2019-02-06 05:31:46 -05:00
|
|
|
end
|
|
|
|
|
2017-04-24 13:24:34 -04:00
|
|
|
def reply_attributes
|
|
|
|
super.tap { |attrs| attrs.delete(:discussion_id) }
|
|
|
|
end
|
2017-03-09 20:29:11 -05:00
|
|
|
end
|