Hello everyone,
I have a problem when I override the sign up and create new session functions :
When a user registers I want to save his information in my database (for example firstname, lastname). Then his information will be added in the token when creating session.
The problem is that I make a save in the database after
await originalImplementation.signInUpPOST(input);
. When I want to fetch my user at create session time the user is undefined. So my firstname lastname is not added in my token
How can I do ?