winter/config/cookie.php
pikanji ab9dcaf09c Add cookie configuration file (#3644)
Adds the cookie configuration file required by octobercms/library#335. Documented in octobercms/docs#3644.
2018-07-19 22:38:45 -04:00

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',
],
];