Hi,
I want to use an action that runs after every register.
The action should take the user information, send it to my backend, and store it in the database.
The problem is that when I checked the event object here:
exports.onExecutePostUserRegistration = async (event, api) => {
console.log(event)
};
I didn’t see the user’s password if he/she was registered with a password-email strategy.
I want to make a replica of each new user, including those who registered with email.
Is the thing even possible?
Thank you all ![]()