2012-02-20 07:39:03 +01:00
|
|
|
= render "projects/project_head"
|
2012-01-04 01:07:56 +01:00
|
|
|
|
2012-01-28 11:40:17 +01:00
|
|
|
- if can? current_user, :admin_project, @project
|
2012-04-26 19:43:12 +02:00
|
|
|
.alert.alert-info
|
|
|
|
%span
|
|
|
|
Post receive hooks for binding events when someone push to repository.
|
|
|
|
%br
|
2012-06-04 00:37:27 +02:00
|
|
|
Read more about web hooks
|
2012-08-11 00:07:50 +02:00
|
|
|
%strong #{link_to "here", help_web_hooks_path, class: "vlink"}
|
2012-01-08 12:20:20 +01:00
|
|
|
|
2012-08-23 23:04:43 +02:00
|
|
|
= form_for [@project, @hook], as: :hook, url: project_hooks_path(@project), html: { class: 'form-inline' } do |f|
|
2012-04-26 19:43:12 +02:00
|
|
|
-if @hook.errors.any?
|
2013-01-30 15:53:18 +01:00
|
|
|
.alert.alert-error
|
2012-04-26 19:43:12 +02:00
|
|
|
- @hook.errors.full_messages.each do |msg|
|
|
|
|
%p= msg
|
|
|
|
.clearfix
|
|
|
|
= f.label :url, "URL:"
|
|
|
|
.input
|
2012-08-11 00:07:50 +02:00
|
|
|
= f.text_field :url, class: "text_field xxlarge"
|
2012-04-26 19:43:12 +02:00
|
|
|
|
2013-01-29 21:18:19 +01:00
|
|
|
= f.submit "Add Web Hook", class: "btn btn-primary"
|
2012-04-26 19:43:12 +02:00
|
|
|
%hr
|
2012-03-28 09:46:51 +02:00
|
|
|
|
2012-03-05 23:29:40 +01:00
|
|
|
-if @hooks.any?
|
2012-12-14 06:14:05 +01:00
|
|
|
%h3.page_title
|
|
|
|
Hooks (#{@hooks.count})
|
2012-04-26 19:43:12 +02:00
|
|
|
%br
|
2012-09-03 20:53:16 +02:00
|
|
|
%table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th URL
|
|
|
|
%th
|
2012-03-05 23:29:40 +01:00
|
|
|
- @hooks.each do |hook|
|
|
|
|
%tr
|
|
|
|
%td
|
2012-12-14 06:14:05 +01:00
|
|
|
%span.badge.badge-info POST
|
2013-01-19 11:50:44 +01:00
|
|
|
→
|
|
|
|
%span.monospace= hook.url
|
2012-03-05 23:29:40 +01:00
|
|
|
%td
|
2013-01-30 15:40:43 +01:00
|
|
|
.pull-right
|
2013-01-29 21:29:21 +01:00
|
|
|
= link_to 'Test Hook', test_project_hook_path(@project, hook), class: "btn btn-small grouped"
|
|
|
|
= link_to 'Remove', project_hook_path(@project, hook), confirm: 'Are you sure?', method: :delete, class: "btn btn-remove btn-small grouped"
|