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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-23 20:47:22 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-23 20:47:22 +0400
commit2ed7cbfba4ff3c6a4cf3e72515a0375544998de0 (patch)
treeae6d7530745c80633cd993c99f7820e1452f3e1b /app/controllers/projects/commits_controller.rb
parent95791316f4037273af7b747ce1851d5f4e46933f (diff)
Move projects controllers/views in Projects module
Diffstat (limited to 'app/controllers/projects/commits_controller.rb')
-rw-r--r--app/controllers/projects/commits_controller.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/controllers/projects/commits_controller.rb b/app/controllers/projects/commits_controller.rb
new file mode 100644
index 00000000000..bdffc940ea5
--- /dev/null
+++ b/app/controllers/projects/commits_controller.rb
@@ -0,0 +1,23 @@
+require "base64"
+
+class Projects::CommitsController < Projects::ApplicationController
+ include ExtractsPath
+
+ # Authorize
+ before_filter :authorize_read_project!
+ before_filter :authorize_code_access!
+ before_filter :require_non_empty_project
+
+ def show
+ @repo = @project.repository
+ @limit, @offset = (params[:limit] || 40), (params[:offset] || 0)
+
+ @commits = @repo.commits(@ref, @path, @limit, @offset)
+
+ respond_to do |format|
+ format.html # index.html.erb
+ format.js
+ format.atom { render layout: false }
+ end
+ end
+end