2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack\Http\Middleware;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2017-11-19 10:56:06 -05:00
|
|
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2017-11-19 10:56:06 -05:00
|
|
|
class VerifyCsrfToken extends Middleware
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2019-09-06 18:36:16 -04:00
|
|
|
/**
|
|
|
|
* Indicates whether the XSRF-TOKEN cookie should be set on the response.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
protected $addHttpCookie = true;
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
/**
|
|
|
|
* The URIs that should be excluded from CSRF verification.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $except = [
|
2021-06-26 11:23:15 -04:00
|
|
|
'saml2/*',
|
2015-07-12 15:01:42 -04:00
|
|
|
];
|
|
|
|
}
|