Welcome to mirror list, hosted at ThFree Co, Russian Federation.

commits_controller.rb « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe46ddcefb7bc26777929512d14d95ec07864f7e (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
32
33
34
35
36
37
38
39
require "base64"

class CommitsController < ApplicationController
  before_filter :project

  # Authorize
  before_filter :add_project_abilities
  before_filter :authorize_read_project!

  def index
    load_refs # load @branch, @tag & @ref

    @repo = project.repo

    if params[:path]
      @commits = @repo.log(@ref, params[:path], :max_count => params[:limit] || 100, :skip => params[:offset] || 0)
    else
      @commits = @repo.commits(@ref, params[:limit] || 100, params[:offset] || 0)
    end

    respond_to do |format|
      format.html # index.html.erb
      format.js
      format.json { render json: @commits }
    end
  end

  def show
    @commit = project.repo.commits(params[:id]).first
    @notes = project.notes.where(:noteable_id => @commit.id, :noteable_type => "Commit")
    @note = @project.notes.new(:noteable_id => @commit.id, :noteable_type => "Commit")

    respond_to do |format|
      format.html # show.html.erb
      format.js
      format.json { render json: @commit }
    end
  end
end