summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/renders_commits.rb
blob: fb41dc1e8a8bd20874763c602b0b8325b5c12fa5 (plain)
1
2
3
4
5
6
7
module RendersCommits
  def prepare_commits_for_rendering(commits)
    Banzai::CommitRenderer.render(commits, @project, current_user) # rubocop:disable Gitlab/ModuleWithInstanceVariables

    commits
  end
end