mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
Adapt to new web_hook_data method
Uses the first key that the user has for testing post receive hook.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user