diff options
Diffstat (limited to 'app/controllers/hooks_controller.rb')
-rw-r--r-- | app/controllers/hooks_controller.rb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/app/controllers/hooks_controller.rb b/app/controllers/hooks_controller.rb index ad2fb3ae781..df22b0ba29a 100644 --- a/app/controllers/hooks_controller.rb +++ b/app/controllers/hooks_controller.rb @@ -28,10 +28,7 @@ class HooksController < ApplicationController end def test - @hook = @project.hooks.find(params[:id]) - commits = @project.commits(@project.default_branch, nil, 3) - data = @project.post_receive_data(commits.last.id, commits.first.id, "refs/heads/#{@project.default_branch}", current_user) - @hook.execute(data) + TestHookContext.new(project, current_user, params).execute redirect_to :back end |