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
bekacru
bekacru2d ago
Hooks | Better Auth
Better Auth Hooks let you customize BetterAuth's behavior
Woffer12
Woffer12OP2d ago
Is the user object returned in the context anywhere?
Ping
Ping2d ago
You can run this:
const session = await getSessionFromCtx(ctx);
const session = await getSessionFromCtx(ctx);
Woffer12
Woffer12OP2d ago
Ok cool I’ll try that, where is that in the docs? I must have missed its mention :LUL:
Ping
Ping2d ago
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 me
Plugins | Better Auth
Learn how to use plugins with Better Auth.
Woffer12
Woffer12OP2d ago
Ah gotcha alright, thanks again I’ll try it out and let you know if I run into problems

Did you find this page helpful?