gitlab-org--gitlab-foss/app/models/individual_note_discussion.rb
2017-04-05 17:44:14 +01:00

11 lines
278 B
Ruby

# 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.
class IndividualNoteDiscussion < Discussion
def potentially_resolvable?
false
end
def individual_note?
true
end
end