3ac3ca1d70
- fix(tasks): use RENDER_SCRIPTS_DIR env var for catalog_assets.py path (was computing wrong path via __file__ parents → /render-worker/scripts/ which doesn't exist in container) - fix(models): add AssetLibrary to app/models/__init__.py so alembic autogenerate discovers it - fix(api): remove unused FileResponse import from asset_libraries.py Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
1.3 KiB
Python
26 lines
1.3 KiB
Python
"""Re-export all models from domain locations.
|
|
|
|
This file ensures that `from app.models import X` continues to work.
|
|
The canonical definitions live in app/domains/*/models.py.
|
|
"""
|
|
from app.domains.tenants.models import Tenant
|
|
from app.domains.auth.models import User
|
|
from app.domains.imports.models import Template
|
|
from app.domains.products.models import CadFile, Product
|
|
from app.domains.orders.models import Order, OrderItem, OrderLine
|
|
from app.domains.notifications.models import AuditLog
|
|
from app.domains.billing.models import PricingTier
|
|
from app.domains.rendering.models import OutputType, RenderTemplate, ProductRenderPosition, WorkflowDefinition, WorkflowRun, WorkflowNodeResult
|
|
from app.domains.materials.models import Material, MaterialAlias, AssetLibrary
|
|
from app.domains.media.models import MediaAsset, MediaAssetType
|
|
|
|
# Also re-export SystemSetting (no domain assigned — stays as-is)
|
|
from app.models.system_setting import SystemSetting
|
|
|
|
__all__ = [
|
|
"Tenant", "User", "Template", "CadFile", "Product", "Order", "OrderItem", "OrderLine",
|
|
"AuditLog", "PricingTier", "OutputType", "RenderTemplate", "ProductRenderPosition",
|
|
"WorkflowDefinition", "WorkflowRun", "WorkflowNodeResult",
|
|
"Material", "MaterialAlias", "AssetLibrary", "MediaAsset", "MediaAssetType", "SystemSetting",
|
|
]
|