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

22 lines
793 B
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
- add_to_breadcrumbs "System Hooks", admin_hooks_path
2017-08-17 22:00:37 +05:30
- page_title 'Edit System Hook'
%h3.page-title
Edit System Hook
%p.light
2019-02-15 15:39:39 +05:30
#{link_to 'System hooks ', help_page_path('system_hooks/system_hooks')} can be
2017-08-17 22:00:37 +05:30
used for binding events when GitLab creates a User or Project.
%hr
2018-11-08 19:23:39 +05:30
= form_for @hook, as: :hook, url: admin_hook_path do |f|
2017-08-17 22:00:37 +05:30
= render partial: 'form', locals: { form: f, hook: @hook }
.form-actions
2018-12-05 23:21:45 +05:30
= f.submit 'Save changes', class: 'btn btn-success'
2018-03-17 18:26:18 +05:30
= render 'shared/web_hooks/test_button', triggers: SystemHook.triggers, hook: @hook
2018-11-08 19:23:39 +05:30
= link_to 'Remove', admin_hook_path(@hook), method: :delete, class: 'btn btn-remove float-right', data: { confirm: 'Are you sure?' }
2017-09-10 17:25:29 +05:30
%hr
= render partial: 'admin/hook_logs/index', locals: { hook: @hook, hook_logs: @hook_logs }