From 1bc0bd32444feb8d571b6d95a2bede2fb67bb951 Mon Sep 17 00:00:00 2001
From: Abhi Devireddy <abhi@devireddy.com>
Date: Tue, 6 Mar 2012 22:26:39 -0600
Subject: [PATCH] Adapt to new web_hook_data method

Uses the first key that the user has for testing post receive hook.
---
 app/controllers/hooks_controller.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/controllers/hooks_controller.rb b/app/controllers/hooks_controller.rb
index 7c5f7631f4e..72da6f98947 100644
--- a/app/controllers/hooks_controller.rb
+++ b/app/controllers/hooks_controller.rb
@@ -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
-- 
GitLab