mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Set the cookie name using APP_NAME instead of a separate variable
This commit is contained in:
parent
87c3478c74
commit
fa2595b531
2 changed files with 4 additions and 3 deletions
|
@ -37,8 +37,6 @@ MAIL_ENCRYPTION=tls
|
|||
MAIL_SENDFROM=null
|
||||
MAIL_SENDTO=null
|
||||
|
||||
COOKIE_NAME=hypothetical
|
||||
|
||||
MAILCHIMP_APIKEY=
|
||||
MAILCHIMP_LISTID=
|
||||
|
||||
|
|
|
@ -122,7 +122,10 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'cookie' => env('COOKIE_NAME', 'hypothetical'),
|
||||
'cookie' => env(
|
||||
'SESSION_COOKIE',
|
||||
str_slug(env('APP_NAME', 'hypothetical'), '_').'_session'
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue