Files
librenms-librenms/resources/views/poller/settings.blade.php
Tony Murray 300645388f Dispatcher Service settings (#11760)
* Poller settings WIP

* Poller settings WIP2

* working on SettingMultiple

* setting multiple working

* settings sent with all required info

* fix translation

* Fix keys

* fix groups setting

* Apply settings to service
fixes and validations for setting

* don't error when no poller_cluster entry exists

* hid tab when no poller cluster entries

* Authorization

* make prod

* daily maintenance toggle should be advanced

* Update schema def
2020-06-08 08:27:03 -05:00

30 lines
824 B
PHP

@extends('poller.index')
@section('title', __('Poller Settings'))
@section('content')
@parent
<div id="app">
<poller-settings
:pollers='@json($poller_cluster, JSON_FORCE_OBJECT)'
:settings='@json($settings, JSON_FORCE_OBJECT)'
></poller-settings>
</div>
@endsection
@push('styles')
<link href="{{ asset(mix('/css/app.css')) }}" rel="stylesheet">
@endpush
@section('javascript')
<script src="{{ asset(mix('/js/lang/en.js')) }}"></script>
<script src="{{ asset(mix('/js/lang/' . app()->getLocale() . '.js')) }}"></script>
<script src="{{ asset(mix('/js/manifest.js')) }}"></script>
<script src="{{ asset(mix('/js/vendor.js')) }}"></script>
@routes
@endsection
@push('scripts')
<script src="{{ asset(mix('/js/app.js')) }}"></script>
@endpush