summaryrefslogtreecommitdiff
path: root/app/controllers/compare_controller.rb
blob: ae20f9c0ba6dd0a62b28721060318aec056b1344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class CompareController < ProjectResourceController
  # Authorize
  before_filter :authorize_read_project!
  before_filter :authorize_code_access!
  before_filter :require_non_empty_project

  def index
  end

  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

  def create
    redirect_to project_compare_path(@project, params[:from], params[:to])
  end
end