Skip to content
代码片段 群组 项目
提交 57ac5fe9 编辑于 作者: Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
浏览文件

Procfile added. use foreman start to run gitlabhq

上级 2d3b6375
无相关合并请求
port: 9999
web: bundle exec rails s -p $PORT
worker: bundle exec rake environment resque:work QUEUE=*
......@@ -29,6 +29,15 @@ def create
end
end
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}")
@hook.execute(data)
redirect_to :back
end
def show
@hook = @project.web_hooks.find(params[:id])
end
......
= render "repositories/head"
= debug @hook
%h3= @hook.url
- if can? current_user, :admin_project, @project
.merge-tabs
= link_to 'Test Hook', test_project_hook_path(@project, @hook), :class => "grey-button"
.right
= link_to 'Remove', project_hook_path(@project, @hook), :confirm => 'Are you sure?', :method => :delete, :class => "red-button"
......@@ -85,7 +85,11 @@
end
resources :snippets
resources :hooks, :only => [:index, :new, :create, :destroy, :show]
resources :hooks, :only => [:index, :new, :create, :destroy, :show] do
member do
get :test
end
end
resources :commits
resources :team_members
resources :issues do
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册