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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
953 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-04-04 22:27:23 +00:00
# A discussion on merge request or commit diffs consisting of `LegacyDiffNote` notes.
#
2017-04-04 22:27:23 +00:00
# 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
2017-04-08 19:58:08 +00:00
memoized_values << :active
def self.note_class
LegacyDiffNote
end
def legacy_diff_discussion?
true
end
2017-10-07 04:25:17 +00:00
def on_image?
false
end
def on_text?
true
end
2017-04-08 19:58:08 +00:00
def active?(*args)
return @active if @active.present?
@active = first_note.active?(*args)
end
def collapsed?
!active?
end
def merge_request_version_params
return unless for_merge_request?
if active?
{}
else
nil
end
end
def reply_attributes
super.merge(line_code: line_code)
end
end