mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
11 lines
241 B
PHP
11 lines
241 B
PHP
<?php
|
|
|
|
header('Content-type: application/json');
|
|
|
|
// reload dashboard referencing old endpoint
|
|
exit(json_encode([
|
|
'html' => '<script>window.location.reload(false);</script>',
|
|
'status' => 'ok',
|
|
'title' => 'Reload Dasbhoard',
|
|
]));
|