mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-03 10:30:51 +08:00
19 lines
377 B
PHP
Executable File
19 lines
377 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance;
|
|
|
|
class CheckForMaintenanceMode extends PreventRequestsDuringMaintenance
|
|
{
|
|
/**
|
|
* 维护模式白名单URI
|
|
* @var array<int, string>
|
|
*/
|
|
protected $except = [
|
|
// 示例:
|
|
// '/api/health-check',
|
|
// '/status'
|
|
];
|
|
}
|