mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
19 lines
408 B
PHP
19 lines
408 B
PHP
<?php
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode as Middleware;
|
|
|
|
class CheckForMaintenanceMode extends Middleware
|
|
{
|
|
/**
|
|
* The URIs that should be reachable while maintenance mode is enabled.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $except = [
|
|
'/service/upgrade-database',
|
|
'/service/down',
|
|
'/service/up',
|
|
];
|
|
}
|