Heimdall/app/Http/Middleware/VerifyCsrfToken.php

22 lines
388 B
PHP
Raw Normal View History

2018-01-26 14:35:01 +00:00
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
class VerifyCsrfToken extends Middleware
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
//
2018-02-05 19:43:24 +00:00
'order',
'appload',
2018-02-08 15:50:53 +00:00
'test_config',
//'get_stats'
2018-01-26 14:35:01 +00:00
];
}