2018-05-09 08:05:17 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
|
2019-02-12 17:45:04 -06:00
|
|
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
|
2018-05-09 08:05:17 -05:00
|
|
|
|
2019-02-12 17:45:04 -06:00
|
|
|
class VerifyCsrfToken extends Middleware
|
2018-05-09 08:05:17 -05:00
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The URIs that should be excluded from CSRF verification.
|
|
|
|
|
*
|
|
|
|
|
* @var array
|
|
|
|
|
*/
|
|
|
|
|
protected $except = [
|
2022-02-20 22:05:51 +01:00
|
|
|
'/auth/*/callback',
|
2018-05-09 08:05:17 -05:00
|
|
|
];
|
|
|
|
|
}
|