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/helpers')
-rw-r--r--app/helpers/notes_helper.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/helpers/notes_helper.rb b/app/helpers/notes_helper.rb
index 8ec72d5f43a..443e0143647 100644
--- a/app/helpers/notes_helper.rb
+++ b/app/helpers/notes_helper.rb
@@ -57,23 +57,6 @@ module NotesHelper
data: data, title: 'Add a reply'
end
- def preload_max_access_for_authors(notes, project)
- user_ids = notes.map(&:author_id)
- project.team.max_member_access_for_user_ids(user_ids)
- end
-
- def preload_noteable_for_regular_notes(notes)
- ActiveRecord::Associations::Preloader.new.preload(notes.reject(&:for_commit?), :noteable)
- end
-
- def prepare_notes_for_rendering(notes)
- preload_noteable_for_regular_notes(notes)
- preload_max_access_for_authors(notes, @project)
- Banzai::NoteRenderer.render(notes, @project, current_user)
-
- notes
- end
-
def note_max_access_for_user(note)
note.project.team.human_max_access(note.author_id)
end