summaryrefslogtreecommitdiff
path: root/app/models/individual_note_discussion.rb
blob: 42318fa3d6e8d02961137bf61447357ce43fbf67 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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