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

_form.html.haml « web_hooks « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecb736dac4f2b5a7d744e373522abdf11d099ba1 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
= form_errors(hook)

- if Feature.enabled?(:webhook_form_mask_url)
  .js-vue-webhook-form{ data: webhook_form_data(hook) }
- else
  .form-group
    = form.label :url, s_('Webhooks|URL'), class: 'label-bold'
    = form.text_field :url, class: 'form-control gl-form-input', placeholder: 'http://example.com/trigger-ci.json'
    %p.form-text.text-muted
      = s_('Webhooks|URL must be percent-encoded if it contains one or more special characters.')
.form-group
  = form.label :token, s_('Webhooks|Secret token'), class: 'label-bold'
  = form.password_field :token, value: hook.masked_token, autocomplete: 'new-password', class: 'form-control gl-form-input'
  %p.form-text.text-muted
    - code_start = '<code>'.html_safe
    - code_end = '</code>'.html_safe
    = s_('Webhooks|Used to validate received payloads. Sent with the request in the %{code_start}X-Gitlab-Token%{code_end} HTTP header.').html_safe % { code_start: code_start, code_end: code_end }
.form-group
  = form.label :url, s_('Webhooks|Trigger'), class: 'label-bold'
  %ul.list-unstyled
    %li.gl-pb-5
      - if Feature.enabled?(:enhanced_webhook_support_regex)
        - is_new_hook = hook.id.nil?
        .js-vue-push-events{ data: { push_events: hook.push_events.to_s, strategy: hook.branch_filter_strategy, is_new_hook: is_new_hook.to_s, push_events_branch_filter: hook.push_events_branch_filter } }
      - else
        = form.gitlab_ui_checkbox_component :push_events, s_('Webhooks|Push events')
        .gl-pl-6
          = form.text_field :push_events_branch_filter, class: 'form-control gl-form-input',
            placeholder: 'Branch name or wildcard pattern to trigger on (leave blank for all)'
        %p.form-text.text-muted.custom-control
          = s_('Webhooks|Push to the repository.')
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :tag_push_events,
          s_('Webhooks|Tag push events'),
          help_text: s_('Webhooks|A new tag is pushed to the repository.')
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :note_events,
          s_('Webhooks|Comments'),
          help_text: s_('Webhooks|A comment is added to an issue or merge request.')
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :confidential_note_events,
          s_('Webhooks|Confidential comments'),
          help_text: s_('Webhooks|A comment is added to a confidential issue.')
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :issues_events,
          s_('Webhooks|Issues events'),
          help_text: s_('Webhooks|An issue is created, updated, closed, or reopened.')
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :confidential_issues_events,
          s_('Webhooks|Confidential issues events'),
          help_text: s_('Webhooks|A confidential issue is created, updated, closed, or reopened.')
    - if @group
      = render_if_exists 'groups/hooks/member_events', form: form
      = render_if_exists 'groups/hooks/subgroup_events', form: form
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :merge_requests_events,
          s_('Webhooks|Merge request events'),
          help_text: s_('Webhooks|A merge request is created, updated, or merged.')
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :job_events,
          s_('Webhooks|Job events'),
          help_text: s_("Webhooks|A job's status changes.")
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :pipeline_events,
          s_('Webhooks|Pipeline events'),
          help_text: s_("Webhooks|A pipeline's status changes.")
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :wiki_page_events,
          s_('Webhooks|Wiki page events'),
          help_text: s_('Webhooks|A wiki page is created or updated.')
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :deployment_events,
          s_('Webhooks|Deployment events'),
          help_text: s_('Webhooks|A deployment starts, finishes, fails, or is canceled.')
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :feature_flag_events,
          s_('Webhooks|Feature flag events'),
          help_text: s_('Webhooks|A feature flag is turned on or off.')
    %li.gl-pb-5
      = form.gitlab_ui_checkbox_component :releases_events,
          s_('Webhooks|Releases events'),
          help_text: s_('Webhooks|A release is created or updated.')
.form-group
  = form.label :enable_ssl_verification, s_('Webhooks|SSL verification'), class: 'label-bold checkbox'
  %ul.list-unstyled
    %li
      = form.gitlab_ui_checkbox_component :enable_ssl_verification, s_('Webhooks|Enable SSL verification')