hunita
hunita
BABetter Auth
Created by hunita on 3/26/2025 in #bug-reports
using authClient.organization.setActive() corrupts session_token in cookie
When ever I attempt to call setActive on the client:
await client.organization.setActive({ organizationId })
await client.organization.setActive({ organizationId })
I will have an un-authenticated user due to the cookie values changing from this: better-auth.session_token: isFHeVVfHfyLKGUbhthDBhyaMrvliJxC.eaSNvBFuGJGVfoUt2VFAQfeOFzIP82SDhipYEH7wbO0:"" to this: better-auth.session_token: undefined.JTi+O22FDM7EM3bIo4l8aKoK2Q1qJx0cj0hVw6mLUR0:"" Happens with 1.2.4 and with v1.2.5-beta.10 (using the mongo adapter).
2 replies
BABetter Auth
Created by hunita on 3/22/2025 in #help
Using mongodb adapter and generateId creates id field in addition to _id field
using this config:
import { createId } from '@paralleldrive/cuid2'

const auth = betterAuth({
// ...
database: mongodbAdapter(client.db()),
advanced: {
generateId: () => return createId()
}
})
import { createId } from '@paralleldrive/cuid2'

const auth = betterAuth({
// ...
database: mongodbAdapter(client.db()),
advanced: {
generateId: () => return createId()
}
})
leads to user documents having the following form:
// user
{
"_id": ObjectId('67dee48723670eccd7f45380'),
"id": "g966fyld09zcrhbq7v6wiib1",
"name": " ... ",
// ...
}
// user
{
"_id": ObjectId('67dee48723670eccd7f45380'),
"id": "g966fyld09zcrhbq7v6wiib1",
"name": " ... ",
// ...
}
This seems to be intended behavior, but I would like to be able to override _id entirely. Is this possible?
3 replies
BABetter Auth
Created by hunita on 3/19/2025 in #help
create organization in databaseHooks.user.create.after
I want to ensure that for all created users without an invite link, an organization (using the organization plugin) is created for them automatically on sign up. Ideally also set this freshly created organization as their active organization on the client. Is there a way to create an organization for a user that has just been created? I was thinking of using this database hook:
const auth = betterAuth({
database: mongodbAdapter(client.db()),
plugins: [
organization({ allowUserToCreateOrganization: false })
],
databaseHooks: {
user: {
create: {
after: async (user) => {
// create organization for user - can't access the server auth api, can I?
}
}
}
},
// ...
})
const auth = betterAuth({
database: mongodbAdapter(client.db()),
plugins: [
organization({ allowUserToCreateOrganization: false })
],
databaseHooks: {
user: {
create: {
after: async (user) => {
// create organization for user - can't access the server auth api, can I?
}
}
}
},
// ...
})
Any workarounds or solutions for this? Thank you!
7 replies