8 lines
210 B
Ruby
8 lines
210 B
Ruby
|
module RendersCommits
|
||
|
def prepare_commits_for_rendering(commits)
|
||
|
Banzai::CommitRenderer.render(commits, @project, current_user) # rubocop:disable Gitlab/ModuleWithInstanceVariables
|
||
|
|
||
|
commits
|
||
|
end
|
||
|
end
|