mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
fix: rework documents limits logic (#1836)
This commit is contained in:
@ -66,7 +66,7 @@ export const getServerLimits = async ({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// If plan expired.
|
// Early return for users with an expired subscription.
|
||||||
if (subscription && subscription.status !== SubscriptionStatus.ACTIVE) {
|
if (subscription && subscription.status !== SubscriptionStatus.ACTIVE) {
|
||||||
return {
|
return {
|
||||||
quota: INACTIVE_PLAN_LIMITS,
|
quota: INACTIVE_PLAN_LIMITS,
|
||||||
@ -74,15 +74,15 @@ export const getServerLimits = async ({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (subscription && organisation.organisationClaim.flags.unlimitedDocuments) {
|
// Allow unlimited documents for users with an unlimited documents claim.
|
||||||
|
// This also allows "free" claim users without subscriptions if they have this flag.
|
||||||
|
if (organisation.organisationClaim.flags.unlimitedDocuments) {
|
||||||
return {
|
return {
|
||||||
quota: PAID_PLAN_LIMITS,
|
quota: PAID_PLAN_LIMITS,
|
||||||
remaining: PAID_PLAN_LIMITS,
|
remaining: PAID_PLAN_LIMITS,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// If free tier or plan does not have unlimited documents.
|
|
||||||
if (!subscription || !organisation.organisationClaim.flags.unlimitedDocuments) {
|
|
||||||
const [documents, directTemplates] = await Promise.all([
|
const [documents, directTemplates] = await Promise.all([
|
||||||
prisma.document.count({
|
prisma.document.count({
|
||||||
where: {
|
where: {
|
||||||
@ -116,10 +116,4 @@ export const getServerLimits = async ({
|
|||||||
quota,
|
quota,
|
||||||
remaining,
|
remaining,
|
||||||
};
|
};
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
quota: PAID_PLAN_LIMITS,
|
|
||||||
remaining: PAID_PLAN_LIMITS,
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user