Marcel Herd
Marcel Herd
@timneutkens Why does it have to be `any` instead of `unknown`? I ran into the following issue: ```typescript await prisma.foo.create({ data: { ...req.body, user, } }); ``` The `data` property...
Not sure if you can get it directly from Next Auth, but personally I use `@microsoft/microsoft-graph-client` and use the Graph API. You can get the user's picture like that as...
My NextAuth config looks something like this: ```typescript const adapter = PrismaAdapter(prisma); export default NextAuth({ adapter, providers: [ AzureADProvider({ clientId: env.AZURE_AD_CLIENT_ID, clientSecret: env.AZURE_AD_CLIENT_SECRET, tenantId: env.AZURE_AD_TENANT_ID, authorization: { params: { scope:...