Module: RendersNotes

Instance Method Summary collapse

Instance Method Details

#prepare_notes_for_rendering(notes) ⇒ Object

rubocop:disable Gitlab/ModuleWithInstanceVariables



5
6
7
8
9
10
11
12
# File 'app/controllers/concerns/renders_notes.rb', line 5

def prepare_notes_for_rendering(notes)
  preload_noteable_for_regular_notes(notes)
  preload_max_access_for_authors(notes, @project)
  preload_author_status(notes)
  Notes::RenderService.new(current_user).execute(notes)

  notes
end