1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-27 20:32:28 +01:00
Pterodactyl-Panel/app/Http/Middleware/VerifyCsrfToken.php

20 lines
365 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
class VerifyCsrfToken extends BaseVerifier
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
2016-01-02 01:27:44 +01:00
'remote/*',
'daemon/*',
2016-12-07 23:46:38 +01:00
'api/*',
];
}