gitlab-org--gitlab-foss/app/models/individual_note_discussion.rb

14 lines
225 B
Ruby
Raw Normal View History

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