({ session, user })
| 44 | }, |
| 45 | callbacks: { |
| 46 | async session({ session, user }) { |
| 47 | session.user.id = user.id; |
| 48 | session.user.subscription = await getSubscriptionByEmail(user.email); |
| 49 | session.user.stripeId = user.stripeId; |
| 50 | return session; |
| 51 | }, |
| 52 | }, |
| 53 | theme: { |
| 54 | brandColor: "#4F46E5", |
nothing calls this directly
no test coverage detected