2011-10-08 17:36:38 -04:00
|
|
|
require "base64"
|
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
class Projects::CommitsController < Projects::ApplicationController
|
2012-09-20 15:32:00 -04:00
|
|
|
include ExtractsPath
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
# Authorize
|
|
|
|
before_filter :authorize_read_project!
|
2012-02-21 17:31:18 -05:00
|
|
|
before_filter :authorize_code_access!
|
2011-10-15 11:51:58 -04:00
|
|
|
before_filter :require_non_empty_project
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-09-20 15:32:00 -04:00
|
|
|
def show
|
2013-01-03 14:09:18 -05:00
|
|
|
@repo = @project.repository
|
2012-02-12 16:52:27 -05:00
|
|
|
@limit, @offset = (params[:limit] || 40), (params[:offset] || 0)
|
2012-05-21 16:17:41 -04:00
|
|
|
|
2013-01-03 14:09:18 -05:00
|
|
|
@commits = @repo.commits(@ref, @path, @limit, @offset)
|
2014-06-10 02:50:27 -04:00
|
|
|
@note_counts = Note.where(commit_id: @commits.map(&:id)).
|
|
|
|
group(:commit_id).count
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html # index.html.erb
|
2013-11-28 04:38:20 -05:00
|
|
|
format.json { pager_json("projects/commits/_commits", @commits.size) }
|
2012-08-10 18:07:50 -04:00
|
|
|
format.atom { render layout: false }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|