Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « hooks « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 641ab082d8d97511bb337753284a066733f5a70d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
- if can? current_user, :admin_project, @project
  .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"}

= form_for [@project, @hook], as: :hook, url: project_hooks_path(@project), html: { class: 'form-inline' } do |f|
  -if @hook.errors.any?
    .alert.alert-error
      - @hook.errors.full_messages.each do |msg|
        %p= msg
  .clearfix
    = f.label :url, "URL:"
    .input
      = f.text_field :url, class: "text_field xxlarge"
       
      = f.submit "Add Web Hook", class: "btn btn-create"
%hr

-if @hooks.any?
  .ui-box
    %h5.title
      Hooks (#{@hooks.count})
    %ul.well-list
      - @hooks.each do |hook|
        %li
          %span.badge.badge-info POST
          →
          %span.monospace= hook.url
          .pull-right
            = 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"