summaryrefslogtreecommitdiff
path: root/app/controllers/compare_controller.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-09-27 09:56:02 +0300
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-09-27 09:56:02 +0300
commit19c58becc00982b718f0e11b74129ef2ccce2454 (patch)
treeee7eb18b8e59074bc56ea06fd30ae241beed4a2f /app/controllers/compare_controller.rb
parent0439387be00bfb862b4454000f805f11fb8cc389 (diff)
parent2c8d3c33ff64ac6af5daf125a2f9ef917e55bcfc (diff)
downloadgitlab-ce-19c58becc00982b718f0e11b74129ef2ccce2454.tar.gz
Merge branch 'tsigo-routing_overhaul'
Diffstat (limited to 'app/controllers/compare_controller.rb')
-rw-r--r--app/controllers/compare_controller.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/controllers/compare_controller.rb b/app/controllers/compare_controller.rb
new file mode 100644
index 00000000000..62f968fd1ed
--- /dev/null
+++ b/app/controllers/compare_controller.rb
@@ -0,0 +1,29 @@
+class CompareController < ApplicationController
+ before_filter :project
+ layout "project"
+
+ # Authorize
+ before_filter :add_project_abilities
+ before_filter :authorize_read_project!
+ before_filter :authorize_code_access!
+ before_filter :require_non_empty_project
+
+ def index
+ end
+
+ def show
+ result = Commit.compare(project, params[:from], params[:to])
+
+ @commits = result[:commits]
+ @commit = result[:commit]
+ @diffs = result[:diffs]
+ @refs_are_same = result[:same]
+ @line_notes = []
+
+ @commits = CommitDecorator.decorate(@commits)
+ end
+
+ def create
+ redirect_to project_compare_path(@project, params[:from], params[:to])
+ end
+end