daveycodez
Explore posts from serversBABetter Auth
•Created by daveycodez on 3/12/2025 in #bug-reports
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
7 replies
BABetter Auth
•Created by daveycodez on 3/11/2025 in #bug-reports
getSessionCookie is broken in Next.js middleware
I have to manually check my cookies in middleware, which works just fine. But getSessionCookie never returns.
133 replies
BABetter Auth
•Created by daveycodez on 1/27/2025 in #bug-reports
api.auth.getSession calls SELECT session and SELECT user separately
Calling getSession, if it doesn't find a cookie, it sends 2 DB queries to select the session and then the user. It would be a lot more performant to send a single query with a join, avoiding waterfall latency
1 replies