mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
18 lines
341 B
PHP
18 lines
341 B
PHP
<?php
|
|
|
|
namespace BookStack\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 = [
|
|
//
|
|
];
|
|
}
|