summaryrefslogtreecommitdiff
path: root/app/models/note_diff_file.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/note_diff_file.rb')
-rw-r--r--app/models/note_diff_file.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/models/note_diff_file.rb b/app/models/note_diff_file.rb
index fcc9e2b3fd8..67a6d5d6d6b 100644
--- a/app/models/note_diff_file.rb
+++ b/app/models/note_diff_file.rb
@@ -3,15 +3,11 @@
class NoteDiffFile < ApplicationRecord
include DiffFile
- scope :for_commit_or_unresolved, -> do
- joins(:diff_note).where("resolved_at IS NULL OR noteable_type = 'Commit'")
- end
-
scope :referencing_sha, -> (oids, project_id:) do
joins(:diff_note).where(notes: { project_id: project_id, commit_id: oids })
end
- delegate :original_position, :project, to: :diff_note
+ delegate :original_position, :project, :resolved_at, to: :diff_note
belongs_to :diff_note, inverse_of: :note_diff_file