I have a custom endpoint which stores a value in a session cookie, using this code:
$session = $this->request->getCurrentRequest()->getSession(); $session->set('test.email', $data['email']); I'm calling this endpoint from a decoupled frontend.
This works fine in Firefox, but in Chrome it looks like the session cookie is being blocked because SameSite is set to Lax. How would I set SameSite to be None? Ideally I only want to do that for this cookie, not all cookies.