Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/finders/notes_finder.rb')
-rw-r--r--app/finders/notes_finder.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/app/finders/notes_finder.rb b/app/finders/notes_finder.rb
deleted file mode 100644
index ab252821b52..00000000000
--- a/app/finders/notes_finder.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-class NotesFinder
- FETCH_OVERLAP = 5.seconds
-
- def execute(project, current_user, params)
- target_type = params[:target_type]
- target_id = params[:target_id]
- # Default to 0 to remain compatible with old clients
- last_fetched_at = Time.at(params.fetch(:last_fetched_at, 0).to_i)
-
- notes =
- case target_type
- when "commit"
- project.notes.for_commit_id(target_id).not_inline
- when "issue"
- project.issues.find(target_id).notes.inc_author
- when "merge_request"
- project.merge_requests.find(target_id).mr_and_commit_notes.inc_author
- when "snippet", "project_snippet"
- project.snippets.find(target_id).notes
- else
- raise 'invalid target_type'
- end
-
- # Use overlapping intervals to avoid worrying about race conditions
- notes.where('updated_at > ?', last_fetched_at - FETCH_OVERLAP).fresh
- end
-end