OSDN Git Service

fix #742
authorHanfei Shen <hanfei.shen@saybot.com>
Thu, 26 Apr 2012 11:00:29 +0000 (19:00 +0800)
committerHanfei Shen <hanfei.shen@saybot.com>
Thu, 26 Apr 2012 11:00:29 +0000 (19:00 +0800)
app/controllers/hooks_controller.rb

index 72da6f9..d0dd35c 100644 (file)
@@ -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}", current_user.keys.first.identifier)
+    data = @project.post_receive_data(commits.last.id, commits.first.id, "refs/heads/#{@project.default_branch}", current_user)
     @hook.execute(data)
 
     redirect_to :back