summaryrefslogtreecommitdiff
path: root/app/views/admin/application_settings/_outbound.html.haml
blob: e046242bee0be38ad73085209de2a0e0b3edfe24 (plain)
1
2
3
4
5
6
7
8
9
10
11
= form_for @application_setting, url: admin_application_settings_path, html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      .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

  = f.submit 'Save changes', class: "btn btn-success"