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

28 lines
673 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 discussion to wrap a single `Note` note on the root of an issue, merge request,
# commit, or snippet, that is not displayed as a discussion.
#
# A discussion of this type is never resolvable.
class IndividualNoteDiscussion < Discussion
def self.note_class
Note
end
def individual_note?
true
end
2019-03-02 22:35:43 +05:30
def can_convert_to_discussion?
2019-05-30 16:15:17 +05:30
noteable.supports_replying_to_individual_notes? && Feature.enabled?(:reply_to_individual_notes)
2019-03-02 22:35:43 +05:30
end
2019-05-30 16:15:17 +05:30
def convert_to_discussion!
first_note.becomes!(Discussion.note_class).to_discussion
2019-03-02 22:35:43 +05:30
end
2017-08-17 22:00:37 +05:30
def reply_attributes
super.tap { |attrs| attrs.delete(:discussion_id) }
end
end