summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/diff_for_path.rb
blob: d5388c4cd20ea45791abaf32d50497de56c2d9b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module DiffForPath
  extend ActiveSupport::Concern

  def render_diff_for_path(diffs)
    diff_file = diffs.diff_files.find do |diff|
      diff.file_identifier == params[:file_identifier]
    end

    return render_404 unless diff_file

    render json: { html: view_to_html_string('projects/diffs/_content', diff_file: diff_file) }
  end
end