fancy-evening-36350
09/25/2023, 1:53 PMregistration
endpoint returns a status 200 with a valid session, but the session cookie seems to be missing in the response. It’s really inconvenient because then users have to go through an additional sign-in flow.
Could you help me with this issue ?proud-plumber-24205
09/25/2023, 3:26 PMproud-plumber-24205
09/25/2023, 3:38 PMory patch project <project-id> --replace '/services/identity/config/selfservice/flows/registration/after/code/hooks=[{"hook": "session"}]'
This adds a "session" hook to the after registration code method.
After patching your project you should have a configuration file that shows something similar to this:
...
selfservice:
flows:
registration:
after:
code:
hooks:
- hook: session
hooks: []
oidc:
hooks:
- hook: session
password:
hooks:
- hook: session
webauthn:
hooks:
- hook: session
proud-plumber-24205
09/25/2023, 3:43 PMfancy-evening-36350
09/25/2023, 3:49 PMfancy-evening-36350
09/25/2023, 3:58 PM