Files
librenms-librenms/app/Http/Middleware/PreventRequestsDuringMaintenance.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
366 B
PHP
Raw Normal View History

<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance as Middleware;
class PreventRequestsDuringMaintenance extends Middleware
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
2023-04-15 09:02:41 -05:00
* @var array<int, string>
*/
protected $except = [
//
];
}