summaryrefslogtreecommitdiff
path: root/app/controllers/hooks_controller.rb
diff options
context:
space:
mode:
authorCyril <jv.cyril@gmail.com>2012-09-26 01:21:37 +0200
committerCyril <jv.cyril@gmail.com>2012-09-26 22:27:43 +0200
commit078a8f0e662a1626b53bbf7f7c3e2b0599c94810 (patch)
treebc650d9d1fb9d5934ae09f98d9d3ba7619dfb224 /app/controllers/hooks_controller.rb
parent0439387be00bfb862b4454000f805f11fb8cc389 (diff)
downloadgitlab-ce-078a8f0e662a1626b53bbf7f7c3e2b0599c94810.tar.gz
factorize before_filters and layout for projects related controllers
Diffstat (limited to 'app/controllers/hooks_controller.rb')
-rw-r--r--app/controllers/hooks_controller.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/controllers/hooks_controller.rb b/app/controllers/hooks_controller.rb
index 4359e99668f..23b81194eb9 100644
--- a/app/controllers/hooks_controller.rb
+++ b/app/controllers/hooks_controller.rb
@@ -1,9 +1,5 @@
-class HooksController < ApplicationController
- before_filter :project
- layout "project"
-
+class HooksController < ProjectController
# Authorize
- before_filter :add_project_abilities
before_filter :authorize_read_project!
before_filter :authorize_admin_project!, only: [:new, :create, :destroy]