Drizzle adapter usePlural not working with passkey & JWT plugins
I'm having an issue with usePlural for Drizzle where passkey is being entered as passkey but jwks is being entered as jwkss.
For passkey, I got it to properly generate the correct plural but I had to add the following to plugins:
It should automatically detect plurals. For JWKS, well tbh I don't even want to store my JWKS in the database at all, I want to provide it directly to auth to avoid queries. But I do not want to store it as "jwkss".
This is how I had to configure jwks to store as jwks even with usePlural for Drizzle. modelName: jwk
This doesn't feel ideal, I think definitely passkeys should detect usePlural on its own without needing to pass schema
1 Reply
also for some reason passkey is generating credentialId as credential_i_d instead of credential_id
is credentialID a typo?
This isn't working
still giving me credentialID: credential_i_d
Actually there's no way to usePlurals but leave jwks as jwks instead of jwkss unless I manually change everything else to plural. It complains if I set modelName to jwk, even though it correctly changes it to jwks. But if I set it to jwks, it becomes jwkss
So yea there's some bugs with the schema on both passkeys and jwks