Set active org on login
I want each user to always have one active org set when they log inn, no user should ever find themselves without an active org.
Docs at https://www.better-auth.com/docs/plugins/organization indicate that I can use a database hook to achive this
My question is, is getActiveOrganization somehow an already made function? It seems to not exist and not work, so would I have to to create this function myself?
And what benefits would I get from doing it as DB hooks instead of adding it to my login flow code? Thi seems to take in session.userId so presumably I'd have to write all the code I'd need to write anywhere else to set an active org.
Organization | Better Auth
The organization plugin allows you to manage your organization's members and teams.
3 Replies
use
auth.api.getFullOrganization
on the serverWhat would be the best way to find a users org based on ID. Since I run it as a before-session hook I can't use headers. auth.api.getFullOrganization expects a full org ID, but I don't have the ID yet.
I'd need to somehow query for the org my user is a member of before I can use headers. The only solution I've found is to use SQL/Kysley, but htis seems insecure compared to the native API
You need to use the databaseHooks / user / create / after - then do a direct DB call to make the 1st organization. I use const orgId = nanoid(25); which I assume is close to what better-auth uses. Then when the user logs in the session / create / before will pull in your active org. the function they show getActiveOrganization is something you will have to make yourself.
And org create
Im using a combo:
That lets you get the users active org and additional details of the org like the name. If active org has been set in session then you don't need to pass the org id.