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/hooks_controller.rb
parent95791316f4037273af7b747ce1851d5f4e46933f (diff)
Move projects controllers/views in Projects module
Diffstat (limited to 'app/controllers/projects/hooks_controller.rb')
-rw-r--r--app/controllers/projects/hooks_controller.rb39
1 files changed, 39 insertions, 0 deletions
diff --git a/app/controllers/projects/hooks_controller.rb b/app/controllers/projects/hooks_controller.rb
new file mode 100644
index 00000000000..3367ddb5d14
--- /dev/null
+++ b/app/controllers/projects/hooks_controller.rb
@@ -0,0 +1,39 @@
+class Projects::HooksController < Projects::ApplicationController
+ # Authorize
+ before_filter :authorize_read_project!
+ before_filter :authorize_admin_project!, only: [:new, :create, :destroy]
+
+ respond_to :html
+
+ layout "project_settings"
+
+ def index
+ @hooks = @project.hooks.all
+ @hook = ProjectHook.new
+ end
+
+ def create
+ @hook = @project.hooks.new(params[:hook])
+ @hook.save
+
+ if @hook.valid?
+ redirect_to project_hooks_path(@project)
+ else
+ @hooks = @project.hooks.all
+ render :index
+ end
+ end
+
+ def test
+ TestHookContext.new(project, current_user, params).execute
+
+ redirect_to :back
+ end
+
+ def destroy
+ @hook = @project.hooks.find(params[:id])
+ @hook.destroy
+
+ redirect_to project_hooks_path(@project)
+ end
+end