summaryrefslogtreecommitdiff
path: root/app/controllers/projects/compare_controller.rb
blob: 7a671e8455dd07f65e57f2861c2b00e101669f44 (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
26
27
28
29
30
31
class Projects::CompareController < Projects::ApplicationController
  # Authorize
  before_filter :authorize_read_project!
  before_filter :authorize_code_access!
  before_filter :require_non_empty_project

  def index
  end

  def show
    base_ref = params[:from]
    head_ref = 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 project_compare_path(@project, params[:from], params[:to])
  end
end