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
|
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :require_non_empty_project
|
|
|
|
before_action :assign_ref_vars
|
|
|
|
before_action :authorize_download_code!
|
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
|
2015-12-27 21:19:14 -05:00
|
|
|
@limit, @offset = (params[:limit] || 40).to_i, (params[:offset] || 0).to_i
|
2012-05-21 16:17:41 -04:00
|
|
|
|
2013-01-03 14:09:18 -05:00
|
|
|
@commits = @repo.commits(@ref, @path, @limit, @offset)
|
2015-10-22 12:38:00 -04:00
|
|
|
@note_counts = project.notes.where(commit_id: @commits.map(&:id)).
|
2015-02-05 23:29:41 -05:00
|
|
|
group(:commit_id).count
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
2014-10-07 12:52:16 -04:00
|
|
|
format.html
|
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
|