diff options
author | Nihad Abbasov <narkoz.2008@gmail.com> | 2012-07-24 05:46:36 -0700 |
---|---|---|
committer | Nihad Abbasov <narkoz.2008@gmail.com> | 2012-07-24 05:46:36 -0700 |
commit | eca823c1c7cef45cc18c6ab36d2327650c85bfc3 (patch) | |
tree | 50b6d6cce1d1da7f5a6e08b497b1b35718db30a9 /app/controllers/hooks_controller.rb | |
parent | 024e0348904179a8dea81c01e27a5f014cf57499 (diff) | |
parent | 8b7e404b5b6944e9c92cc270b2e5d0005781d49d (diff) | |
download | gitlab-ce-eca823c1c7cef45cc18c6ab36d2327650c85bfc3.tar.gz |
Merge branch 'master' into api
Diffstat (limited to 'app/controllers/hooks_controller.rb')
-rw-r--r-- | app/controllers/hooks_controller.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/controllers/hooks_controller.rb b/app/controllers/hooks_controller.rb index 9627aba9771..ad2fb3ae781 100644 --- a/app/controllers/hooks_controller.rb +++ b/app/controllers/hooks_controller.rb @@ -11,24 +11,24 @@ class HooksController < ApplicationController respond_to :html def index - @hooks = @project.web_hooks.all - @hook = WebHook.new + @hooks = @project.hooks.all + @hook = ProjectHook.new end def create - @hook = @project.web_hooks.new(params[:hook]) + @hook = @project.hooks.new(params[:hook]) @hook.save if @hook.valid? redirect_to project_hooks_path(@project) else - @hooks = @project.web_hooks.all + @hooks = @project.hooks.all render :index end end def test - @hook = @project.web_hooks.find(params[:id]) + @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) @@ -37,7 +37,7 @@ class HooksController < ApplicationController end def destroy - @hook = @project.web_hooks.find(params[:id]) + @hook = @project.hooks.find(params[:id]) @hook.destroy redirect_to project_hooks_path(@project) |