Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Http/Middleware/VerifyCsrfToken.php
10277 views
1
<?php
2
3
namespace Pterodactyl\Http\Middleware;
4
5
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
6
7
class VerifyCsrfToken extends BaseVerifier
8
{
9
/**
10
* The URIs that should be excluded from CSRF verification. These are
11
* never hit by the front-end, and require specific token validation
12
* to work.
13
*/
14
protected $except = ['remote/*', 'daemon/*'];
15
}
16
17