summaryrefslogtreecommitdiff
path: root/app/models/legacy_diff_discussion.rb
blob: e617ce36f567e3c675bd03ec645e29e1f619cd83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# A discussion on merge request or commit diffs consisting of `LegacyDiffNote` notes.
#
# All new diff discussions are of the type `DiffDiscussion`, but any diff discussions created
# before the introduction of the new implementation still use `LegacyDiffDiscussion`.
#
# A discussion of this type is never resolvable.
class LegacyDiffDiscussion < Discussion
  include DiscussionOnDiff

  memoized_values << :active

  def legacy_diff_discussion?
    true
  end

  def self.note_class
    LegacyDiffNote
  end

  def active?(*args)
    return @active if @active.present?

    @active = first_note.active?(*args)
  end

  def collapsed?
    !active?
  end

  def reply_attributes
    super.merge(line_code: line_code)
  end
end