From 1edba0cc4588e6e1c7ccb11f839252725f2577de Mon Sep 17 00:00:00 2001 From: Koen Eelen Date: Tue, 16 Jul 2024 14:25:34 +0200 Subject: [PATCH] make cookie_secret consistent with other config valued --- app/Auth/AuthServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Auth/AuthServiceProvider.php b/app/Auth/AuthServiceProvider.php index 790c78c..b6361e3 100644 --- a/app/Auth/AuthServiceProvider.php +++ b/app/Auth/AuthServiceProvider.php @@ -47,7 +47,7 @@ private function getParams(array $auth) : array 'domain' => $auth['domain'], 'clientId' => $auth['client_id'], 'clientSecret' => $auth['client_secret'], - 'cookieSecret' => $auth['cookieSecret'], + 'cookieSecret' => $auth['cookie_secret'], 'redirectUri' => $auth['callback_url'], 'scope' => [ 'openid',