Files
Xboard/app/Http/Middleware/CheckForMaintenanceMode.php
2025-05-07 19:48:19 +08:00

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'
];
}