Stripe plugin doesn't consider databaseHooks.user.create.before hook

I have legacy database that I want to carry the user ids from .

before: async (user) => {
return {
data: {
...user,
id: get_id_from_legacy_db(user.email)
}
};
}



I am overwriting the user.id before user is created. I am trying out strip plugin and now the user ids are getting overwritten. Though
ts?
Was this page helpful?