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\Cookie\Middleware\EncryptCookies as BaseEncrypter;
class EncryptCookies extends BaseEncrypter
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array
*/
protected $except = [
//
];
}