feat: add quota for old users (#5318)

This commit is contained in:
DarkSky
2023-12-19 07:06:26 +00:00
parent 6748e7ba42
commit e0d328676d
2 changed files with 40 additions and 3 deletions

View File

@@ -83,9 +83,9 @@ export class QuotaService {
expiredAt?: Date
) {
await this.prisma.$transaction(async tx => {
const latestFreePlan = await tx.features.aggregate({
const latestPlanVersion = await tx.features.aggregate({
where: {
feature: QuotaType.FreePlanV1,
feature: quota,
},
_max: {
version: true,
@@ -117,7 +117,7 @@ export class QuotaService {
connect: {
feature_version: {
feature: quota,
version: latestFreePlan._max.version || 1,
version: latestPlanVersion._max.version || 1,
},
type: FeatureKind.Quota,
},