Improve public pages

This commit is contained in:
Urtzi Alfaro
2025-10-17 18:14:28 +02:00
parent d4060962e4
commit 7e089b80cf
46 changed files with 5734 additions and 1084 deletions

View File

@@ -13,6 +13,7 @@ AuditLog = create_audit_log_model(Base)
# Import all models to register them with the Base metadata
from .tenants import Tenant, TenantMember, Subscription
from .coupon import CouponModel, CouponRedemptionModel
# List all models for easier access
__all__ = [
@@ -20,4 +21,6 @@ __all__ = [
"TenantMember",
"Subscription",
"AuditLog",
"CouponModel",
"CouponRedemptionModel",
]