debian-mirror-gitlab/app/views/admin/application_settings/_outbound.html.haml

12 lines
542 B
Text
Raw Normal View History

2018-11-18 11:00:15 +05:30
= form_for @application_setting, url: admin_application_settings_path(anchor: 'js-outbound-settings'), html: { class: 'fieldset-form' } do |f|
2018-05-09 12:01:36 +05:30
= form_errors(@application_setting)
%fieldset
.form-group
2018-11-08 19:23:39 +05:30
.form-check
= f.check_box :allow_local_requests_from_hooks_and_services, class: 'form-check-input'
= f.label :allow_local_requests_from_hooks_and_services, class: 'form-check-label' do
Allow requests to the local network from hooks and services
2018-05-09 12:01:36 +05:30
= f.submit 'Save changes', class: "btn btn-success"