Org plugin is ignoring additional fields on teams

I added a slug property to my team schema, but its not being passed when i actually try and use it
export const auth = betterAuth({
...
database: prismaAdapter(db, {
provider: "postgresql"
}),
plugins: [
...
organization({
teams: {
enabled: true,
defaultTeam: {
enabled: false
},
additionalFields: {
slug: {
type: "string",
required: true
}
}
}
}),
nextCookies()
],
...
})
export const auth = betterAuth({
...
database: prismaAdapter(db, {
provider: "postgresql"
}),
plugins: [
...
organization({
teams: {
enabled: true,
defaultTeam: {
enabled: false
},
additionalFields: {
slug: {
type: "string",
required: true
}
}
}
}),
nextCookies()
],
...
})
const team = await auth.api.createTeam({
body: {
name: input.name,
slug: input.slug,
organizationId: input.organizationId
},
headers: ctx.headers
})
const team = await auth.api.createTeam({
body: {
name: input.name,
slug: input.slug,
organizationId: input.organizationId
},
headers: ctx.headers
})
I can manually add it to the schema but its being ignored still, like the additional fields don't even exist
No description
4 Replies
bekacru
bekacru3w ago
additinoal fields aren't supported by the org plugin
prod
prod2w ago
will it be supported? What do we have to do for that?
bekacru
bekacru2w ago
We should probably support it soon. The only problem is the type inference between the server and client is a bit jarring.
Shadow (currently sick)
Late reply but the types do imply that it is supported fyi, it lets you set them in the config

Did you find this page helpful?