Merge branch 'main' into feat/document-templates

This commit is contained in:
Lucas Smith
2023-12-21 14:25:22 +11:00
committed by GitHub
40 changed files with 371 additions and 384 deletions

View File

@ -9,7 +9,9 @@ export const getUsersWithSubscriptionsCount = async () => {
return await prisma.user.count({
where: {
Subscription: {
status: SubscriptionStatus.ACTIVE,
some: {
status: SubscriptionStatus.ACTIVE,
},
},
},
});