perform action after successful email verification

using ionic/vue client with express.js backend i want to perform an action after successful email verification. a possible place would be databaseHooks.user.update.before but unfortunately the object passed to this method only contains the updated property, e.g. { emailVerified: true }, nothing else. if i use databaseHooks.user.update.after, i get the whole user data, but i don't know if the update was caused by email verification or any other reason. and ideas? suggestion: please pass "userData" and "user" to the callback.
Solution:
Hooks | Better Auth
Better Auth Hooks let you customize BetterAuth's behavior
Jump to solution
3 Replies
bekacru
bekacru2d ago
use hooks instead
Solution
bekacru
bekacru2d ago
Hooks | Better Auth
Better Auth Hooks let you customize BetterAuth's behavior
321dev
321devOP2d ago
thanks, but the only piece of information in the ctx object that i could use, is the user's email address. is there a function to retrieve the whole user data based on the email address? nvm, found it: const user = await ctx.context.internalAdapter.findUserByEmail(email);

Did you find this page helpful?