mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
21 lines
578 B
PHP
21 lines
578 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Cookies that should not be encrypted
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Winter CMS 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',
|
|
],
|
|
];
|