19 lines
333 B
PHP
Executable File
19 lines
333 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Common\Core\BaseVerifyCsrfToken;
|
|
|
|
class VerifyCsrfToken extends BaseVerifyCsrfToken
|
|
{
|
|
/**
|
|
* The URIs that should be excluded from CSRF verification.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $except = [
|
|
'secure/update/run',
|
|
'api/v1/videos/*/log-play'
|
|
];
|
|
}
|