Commit 5be94f4b authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #521 from abhid/testing-post-receive-hook

Adapt to new web_hook_data method. fixes #509
parents eb7bbedb 1bc0bd32
......@@ -32,7 +32,7 @@ class HooksController < ApplicationController
def test
@hook = @project.web_hooks.find(params[:id])
commits = @project.commits(@project.default_branch, nil, 3)
data = @project.web_hook_data(commits.last.id, commits.first.id, "refs/heads/#{@project.default_branch}")
data = @project.web_hook_data(commits.last.id, commits.first.id, "refs/heads/#{@project.default_branch}", current_user.keys.first.identifier)
@hook.execute(data)
redirect_to :back
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment