Best way to run code after user logs in/out
Looking for the best way to run code after a user logs in/out of the app.
I need all the users info from the DB obj, the same info that would be returned with authClient.useSession() on a page
6 Replies
checkout hooks
https://www.better-auth.com/docs/concepts/hooks
Hooks | Better Auth
Better Auth Hooks let you customize BetterAuth's behavior
Is the user object returned in the context anywhere?
You can run this:
Ok cool I’ll try that, where is that in the docs? I must have missed its mention :LUL:
No it's not your fault, it's in another part of the docs which you wouldn't had thought to look in 😅
https://www.better-auth.com/docs/concepts/plugins#getsessionfromctx
There are a lot of functions that utilize
ctx
and give you something in return, so these functions are usually documented where it would most likely be used at, hard to document the same functions everywhere if you understand mePlugins | Better Auth
Learn how to use plugins with Better Auth.
Ah gotcha alright, thanks again I’ll try it out and let you know if I run into problems