blob: 6be8ca457391d625161fb985fc7ad658b5d2d638 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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
def reply_attributes
super.tap { |attrs| attrs.delete(:discussion_id) }
end
end
|