gitlabhq/app/views/hooks/index.html.haml

43 lines
1.2 KiB
Plaintext
Raw Normal View History

= 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
Read more about web hooks
%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
= 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-05 23:29:40 +01:00
-if @hooks.any?
%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
%span.badge.badge-info POST
→
%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"