3fa265d195
In this case comparing old_path and new_path is not enough because there are two entires that match.
24 lines
572 B
Ruby
24 lines
572 B
Ruby
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
|
|
|
|
diff_commit = commit_for_diff(diff_file)
|
|
blob = diff_file.blob(diff_commit)
|
|
|
|
locals = {
|
|
diff_file: diff_file,
|
|
diff_commit: diff_commit,
|
|
diff_refs: diffs.diff_refs,
|
|
blob: blob,
|
|
project: project
|
|
}
|
|
|
|
render json: { html: view_to_html_string('projects/diffs/_content', locals) }
|
|
end
|
|
end
|