Remove Commits#compare, add CompareController

This commit is contained in:
Robert Speicher 2012-09-20 15:20:48 -04:00
parent 5a5d214de4
commit 169f16fb32
6 changed files with 53 additions and 21 deletions

View file

@ -45,18 +45,6 @@ class CommitsController < ApplicationController
# end
# end
def compare
result = Commit.compare(project, params[:from], params[:to])
@commits = result[:commits]
@commit = result[:commit]
@diffs = result[:diffs]
@refs_are_same = result[:same]
@line_notes = []
@commits = CommitDecorator.decorate(@commits)
end
def patch
@commit = project.commit(params[:id])

View file

@ -0,0 +1,22 @@
class CompareController < ApplicationController
before_filter :project
layout "project"
# Authorize
before_filter :add_project_abilities
before_filter :authorize_read_project!
before_filter :authorize_code_access!
before_filter :require_non_empty_project
def show
result = Commit.compare(project, params[:from], params[:to])
@commits = result[:commits]
@commit = result[:commit]
@diffs = result[:diffs]
@refs_are_same = result[:same]
@line_notes = []
@commits = CommitDecorator.decorate(@commits)
end
end