Fix editing of MGR posters

This commit is contained in:
DariusIII
2017-07-17 13:23:45 +02:00
parent 6dc54ff6aa
commit c5280c26f0
125 changed files with 863 additions and 103 deletions
+17
View File
@@ -0,0 +1,17 @@
<?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.
*
* @var array
*/
protected $except = [
//
];
}