BigW Consortium Gitlab

_form.html.haml 4.34 KB
Newer Older
1 2 3 4 5
.row.prepend-top-default
  .col-lg-3
    %h4.prepend-top-0
      = page_title
    %p
6
      #{link_to "Webhooks", help_page_path("user/project/integrations/webhooks")} can be
7 8 9 10 11 12 13 14 15 16 17 18
      used for binding events when something is happening within the project.
  .col-lg-9.append-bottom-default
    = form_for hook, as: :hook, url: polymorphic_path(url_components + [:hooks]) do |f|
      = form_errors(hook)

      .form-group
        = f.label :url, "URL", class: 'label-light'
        = f.text_field :url, class: "form-control", placeholder: 'http://example.com/trigger-ci.json'
      .form-group
        = f.label :token, "Secret Token", class: 'label-light'
        = f.text_field :token, class: "form-control", placeholder: ''
        %p.help-block
19
          Use this token to validate received payloads. It will be sent with the request in the X-Gitlab-Token HTTP header.
20 21 22 23 24 25 26 27 28
      .form-group
        = f.label :url, "Trigger", class: 'label-light'
        %ul.list-unstyled
          %li
            = f.check_box :push_events, class: 'pull-left'
            .prepend-left-20
              = f.label :push_events, class: 'list-label' do
                %strong Push events
              %p.light
29
                This URL will be triggered by a push to the repository
30 31 32 33 34 35
          %li
            = f.check_box :tag_push_events, class: 'pull-left'
            .prepend-left-20
              = f.label :tag_push_events, class: 'list-label' do
                %strong Tag push events
              %p.light
36
                This URL will be triggered when a new tag is pushed to the repository
37 38 39 40 41 42
          %li
            = f.check_box :note_events, class: 'pull-left'
            .prepend-left-20
              = f.label :note_events, class: 'list-label' do
                %strong Comments
              %p.light
43
                This URL will be triggered when someone adds a comment
44 45 46 47 48 49
          %li
            = f.check_box :issues_events, class: 'pull-left'
            .prepend-left-20
              = f.label :issues_events, class: 'list-label' do
                %strong Issues events
              %p.light
50
                This URL will be triggered when an issue is created/updated/merged
51 52 53 54 55 56 57
          %li
            = f.check_box :confidential_issues_events, class: 'pull-left'
            .prepend-left-20
              = f.label :confidential_issues_events, class: 'list-label' do
                %strong Confidential Issues events
              %p.light
                This URL will be triggered when a confidential issue is created/updated/merged
58 59 60 61 62 63
          %li
            = f.check_box :merge_requests_events, class: 'pull-left'
            .prepend-left-20
              = f.label :merge_requests_events, class: 'list-label' do
                %strong Merge Request events
              %p.light
64
                This URL will be triggered when a merge request is created/updated/merged
65 66 67 68
          %li
            = f.check_box :build_events, class: 'pull-left'
            .prepend-left-20
              = f.label :build_events, class: 'list-label' do
Filipa Lacerda committed
69
                %strong Jobs events
70
              %p.light
Filipa Lacerda committed
71
                This URL will be triggered when the job status changes
72 73 74 75 76 77
          %li
            = f.check_box :pipeline_events, class: 'pull-left'
            .prepend-left-20
              = f.label :pipeline_events, class: 'list-label' do
                %strong Pipeline events
              %p.light
78
                This URL will be triggered when the pipeline status changes
79 80 81 82 83 84
          %li
            = f.check_box :wiki_page_events, class: 'pull-left'
            .prepend-left-20
              = f.label :wiki_page_events, class: 'list-label' do
                %strong Wiki Page events
              %p.light
85
                This URL will be triggered when a wiki page is created/updated
86 87 88 89 90 91 92 93 94 95 96 97 98
      .form-group
        = f.label :enable_ssl_verification, "SSL verification", class: 'label-light checkbox'
        .checkbox
          = f.label :enable_ssl_verification do
            = f.check_box :enable_ssl_verification
            %strong Enable SSL verification
      = f.submit "Add Webhook", class: "btn btn-create"
    %hr
    %h5.prepend-top-default
      Webhooks (#{hooks.count})
    - if hooks.any?
      %ul.well-list
        - hooks.each do |hook|
99
          = render "project_hook", hook: hook
100 101 102
    - else
      %p.settings-message.text-center.append-bottom-0
        No webhooks found, add one in the form above.