2018-07-20 11:38:45 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Cookies that should not be encrypted
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2021-03-10 15:02:53 -06:00
|
|
|
| Winter CMS encrypts/decrypts cookies by default. You can specify cookies
|
2018-07-20 11:38:45 +09:00
|
|
|
| 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',
|
|
|
|
],
|
|
|
|
|
|
|
|
];
|