Description π
Hi,
Here's a problem i encountered while integrating the prisma adapter (nuxt 3.5.1 with Sidebase 0.5.0)
Keycloak JWT may contain "not-before-policy", but Dash6 is not allowed in Prisma and failed in error while linking.
Apparently, it's not possible to remove this tag in jwt from keycloak.
How to reproduce βοΈ
I could bypass the error generated by prisma by directly modifying in index.js the following :
linkAccount: (data) => {
delete data['not-before-policy'];
return p.account.create({ data })},
Then account where well linked in my postGre DB.
Contributing ππ½
Yes, I am willing to help implement this feature in a PR
Description π
Hi,
Here's a problem i encountered while integrating the prisma adapter (nuxt 3.5.1 with Sidebase 0.5.0)
Keycloak JWT may contain "not-before-policy", but Dash6 is not allowed in Prisma and failed in error while linking.
Apparently, it's not possible to remove this tag in jwt from keycloak.
How to reproduce βοΈ
I could bypass the error generated by prisma by directly modifying in index.js the following :
Then account where well linked in my postGre DB.
Contributing ππ½
Yes, I am willing to help implement this feature in a PR