Skip to content

Commit

Permalink
Change cookie setting to Lax to fix OIDC connection issue
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelfolaron committed Jun 13, 2024
1 parent 57501b9 commit 6640dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Core/Providers/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function register()
'domain' => is_array(parse_url(BASE_URL)) ? parse_url(BASE_URL)['host'] : null,
'secure' => true,
'http_only' => true,
'same_site' => "Strict",
'same_site' => "Lax",
);

$sessionManager = new \Illuminate\Session\SessionManager($app);
Expand Down

0 comments on commit 6640dd1

Please sign in to comment.