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

14 lines
303 B
Ruby

class IndividualNoteDiscussion < Discussion
def self.build_discussion_id(note)
[*super(note), SecureRandom.hex]
end
# Keep this method in sync with the `potentially_resolvable` scope on `ResolvableNote`
def potentially_resolvable?
false
end
def individual_note?
true
end
end