debian-mirror-gitlab/app/views/admin/hooks/_form.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
1.6 KiB
Text
Raw Normal View History

2022-07-23 23:45:48 +05:30
= form_errors(hook, pajamas_alert: true)
2017-08-17 22:00:37 +05:30
.form-group
2021-03-08 18:12:59 +05:30
= form.label :url, _('URL'), class: 'label-bold'
2021-03-11 19:13:27 +05:30
= form.text_field :url, class: 'form-control gl-form-input'
2022-05-07 20:08:51 +05:30
%p.form-text.text-muted= _('URL must be percent-encoded if necessary.')
2017-08-17 22:00:37 +05:30
.form-group
2021-03-11 19:13:27 +05:30
= form.label :token, _('Secret token'), class: 'label-bold'
= form.text_field :token, class: 'form-control gl-form-input'
%p.form-text.text-muted= _('Use this token to validate received payloads.')
2017-08-17 22:00:37 +05:30
.form-group
2021-03-08 18:12:59 +05:30
= form.label :url, _('Trigger'), class: 'label-bold'
2021-03-11 19:13:27 +05:30
.form-text.text-secondary.gl-mb-5= _('System hooks are triggered on sets of events like creating a project or adding an SSH key. You can also enable extra triggers, such as push events.')
2022-06-21 17:19:12 +05:30
%fieldset.form-group
= form.gitlab_ui_checkbox_component :repository_update_events, _('Repository update events'),
help_text: _('URL is triggered when repository is updated')
%fieldset.form-group
= form.gitlab_ui_checkbox_component :push_events, _('Push events'),
help_text: _('URL is triggered for each branch updated to the repository')
%fieldset.form-group
= form.gitlab_ui_checkbox_component :tag_push_events, _('Tag push events'),
help_text: _('URL is triggered when a new tag is pushed to the repository')
%fieldset.form-group
= form.gitlab_ui_checkbox_component :merge_requests_events, _('Merge request events'),
help_text: _('URL is triggered when a merge request is created, updated, or merged')
2017-08-17 22:00:37 +05:30
.form-group
2021-03-08 18:12:59 +05:30
= form.label :enable_ssl_verification, _('SSL verification'), class: 'label-bold checkbox'
2022-06-21 17:19:12 +05:30
= form.gitlab_ui_checkbox_component :enable_ssl_verification, _('Enable SSL verification')