Am trying to create an org when a user signed up.

Tried with database hooks but I don't think auth or authClient work. Does anyone has a working solution?
3 Replies
bekacru
bekacru2mo ago
Database hooks should work
cardinal
cardinalOP2mo ago
you mean like this should work?
databaseHooks: {
user: {
create: {
after: async (user) => {
await auth.api.createOrganization({
body: {
name: "Default",
slug: "default",
},
});
},
},
},
},
databaseHooks: {
user: {
create: {
after: async (user) => {
await auth.api.createOrganization({
body: {
name: "Default",
slug: "default",
},
});
},
},
},
},
this is the error I got with that
2025-03-03T17:58:08.954Z ERROR [Better Auth]: APIError
# SERVER_ERROR: TypeError: Cannot destructure property 'session' of 'result.data' as it is null.
at file:///Users/jaynguyens/Workspaces/uppareach/node_modules/better-auth/dist/shared/better-auth.DEf1xRKI.mjs:1762:13
at internalHandler (file:///Users/jaynguyens/Workspaces/uppareach/node_modules/better-call/src/endpoint.ts:321:20)
at api.<computed> (file:///Users/jaynguyens/Workspaces/uppareach/node_modules/better-auth/dist/api/index.mjs:474:22)
2025-03-03T17:58:08.954Z ERROR [Better Auth]: APIError
# SERVER_ERROR: TypeError: Cannot destructure property 'session' of 'result.data' as it is null.
at file:///Users/jaynguyens/Workspaces/uppareach/node_modules/better-auth/dist/shared/better-auth.DEf1xRKI.mjs:1762:13
at internalHandler (file:///Users/jaynguyens/Workspaces/uppareach/node_modules/better-call/src/endpoint.ts:321:20)
at api.<computed> (file:///Users/jaynguyens/Workspaces/uppareach/node_modules/better-auth/dist/api/index.mjs:474:22)
I mean I could create the organization with prisma, but then I still need to add member to the org @bekacru could I get some input on this?
Nelson Sousa
Nelson Sousa2mo ago
Currently: - You can create an organization without a member only by using the adapter directly (not using better-auth methods); - You can invite existing users to an existing organization; You can not: - Invite a user to sign-up; - Invite a member to sign-up and directly assign a organization. However, there is a PR opened few weeks ago, but not receiving a lot of love here: https://github.com/better-auth/better-auth/pull/1436 that you can get inspired by

Did you find this page helpful?