mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
34 lines
990 B
PHP
34 lines
990 B
PHP
|
<?php
|
||
|
|
||
|
namespace Oxbow\Http;
|
||
|
|
||
|
use Illuminate\Foundation\Http\Kernel as HttpKernel;
|
||
|
|
||
|
class Kernel extends HttpKernel
|
||
|
{
|
||
|
/**
|
||
|
* The application's global HTTP middleware stack.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $middleware = [
|
||
|
\Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
|
||
|
\Oxbow\Http\Middleware\EncryptCookies::class,
|
||
|
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
|
||
|
\Illuminate\Session\Middleware\StartSession::class,
|
||
|
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
|
||
|
\Oxbow\Http\Middleware\VerifyCsrfToken::class,
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* The application's route middleware.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $routeMiddleware = [
|
||
|
'auth' => \Oxbow\Http\Middleware\Authenticate::class,
|
||
|
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
|
||
|
'guest' => \Oxbow\Http\Middleware\RedirectIfAuthenticated::class,
|
||
|
];
|
||
|
}
|