summaryrefslogtreecommitdiff
path: root/app/models/individual_note_discussion.rb
blob: 8c82d21712605cbd2a4ce59cfbaceb9a9cb077da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class IndividualNoteDiscussion < Discussion
  def self.build_discussion_id(note)
    [*super(note), SecureRandom.hex]
  end

  def potentially_resolvable?
    false
  end

  def render_as_individual_notes?
    true
  end
end