9f10943c1a
This reverts commit957e849f41
, reversing changes made to6b9dbe9f5a
. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
34 lines
835 B
Ruby
34 lines
835 B
Ruby
require 'addressable/uri'
|
|
|
|
class Projects::CompareController < Projects::ApplicationController
|
|
# Authorize
|
|
before_action :require_non_empty_project
|
|
before_action :authorize_download_code!
|
|
|
|
def index
|
|
@ref = Addressable::URI.unescape(params[:to])
|
|
end
|
|
|
|
def show
|
|
base_ref = Addressable::URI.unescape(params[:from])
|
|
@ref = head_ref = Addressable::URI.unescape(params[:to])
|
|
|
|
compare_result = CompareService.new.execute(
|
|
current_user,
|
|
@project,
|
|
head_ref,
|
|
@project,
|
|
base_ref
|
|
)
|
|
|
|
@commits = compare_result.commits
|
|
@diffs = compare_result.diffs
|
|
@commit = @commits.last
|
|
@line_notes = []
|
|
end
|
|
|
|
def create
|
|
redirect_to namespace_project_compare_path(@project.namespace, @project,
|
|
params[:from], params[:to])
|
|
end
|
|
end
|