mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
22 lines
579 B
PHP
22 lines
579 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Cookies that should not be encrypted
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| OctoberCMS encrypts/decrypts cookies by default. You can specify cookies
|
||
|
| that should not be encrypted or decrypted here. This is useful, for
|
||
|
| example, when you want to pass data from frontend to server side backend
|
||
|
| via cookies, and vice versa.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'unencryptedCookies' => [
|
||
|
// 'my_cookie',
|
||
|
],
|
||
|
|
||
|
];
|