mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 20:24:44 +02:00
16 lines
391 B
PHP
16 lines
391 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
|
|
|
|
class VerifyCsrfToken extends BaseVerifier
|
|
{
|
|
/**
|
|
* The URIs that should be excluded from CSRF verification. These are
|
|
* never hit by the front-end, and require specific token validation
|
|
* to work.
|
|
*/
|
|
protected $except = ['remote/*', 'daemon/*'];
|
|
}
|