gitlab-org--gitlab-foss/app/controllers/hooks_controller.rb

40 lines
766 B
Ruby
Raw Normal View History

class HooksController < ProjectResourceController
2012-01-03 22:42:14 +00:00
# Authorize
before_filter :authorize_read_project!
before_filter :authorize_admin_project!, only: [:new, :create, :destroy]
2012-01-03 22:42:14 +00:00
respond_to :html
2013-06-19 19:44:57 +00:00
layout "project_settings"
2012-01-03 22:42:14 +00:00
def index
@hooks = @project.hooks.all
@hook = ProjectHook.new
2012-01-03 22:42:14 +00:00
end
def create
@hook = @project.hooks.new(params[:hook])
2012-01-03 22:42:14 +00:00
@hook.save
if @hook.valid?
2012-04-26 17:43:12 +00:00
redirect_to project_hooks_path(@project)
2012-01-03 22:42:14 +00:00
else
@hooks = @project.hooks.all
2012-04-26 17:43:12 +00:00
render :index
2012-01-03 22:42:14 +00:00
end
end
def test
2012-07-31 05:32:49 +00:00
TestHookContext.new(project, current_user, params).execute
redirect_to :back
end
2012-01-03 22:42:14 +00:00
def destroy
@hook = @project.hooks.find(params[:id])
2012-01-03 22:42:14 +00:00
@hook.destroy
redirect_to project_hooks_path(@project)
end
end