fix: quota 0→1000000000 (unlimited) for contract attachments

This commit is contained in:
yumoqing 2026-07-03 17:33:31 +08:00
parent 587cabeb1e
commit 0203dc1c24

View File

@ -27,7 +27,7 @@ class ContractAttachMgr(FileMgr):
async def get_organization_quota(self, sor, orgid):
"""Unlimited quota for contract attachments."""
return 0, '9999-12-31'
return 1000000000, '9999-12-31'
MODULE_NAME = "supplychain"