16 lines
658 B
Python
16 lines
658 B
Python
from app.models.enums import (
|
|
ProductAdminRole, ClientRole, SubscriptionStatus, ProductStatus,
|
|
QRType, QRStatus, ComplianceStatus, VerificationState, PaymentStatus,
|
|
)
|
|
from app.models.documents import (
|
|
User, Organization, OrgMember, Brand, Product, Batch, QRCode,
|
|
QRTemplate, ScanLog, Compliance, Plan, Subscription, PlanHistory,
|
|
Invoice, Payment, StorageUsage, AuditLog, SupportNote, Alert, EmailLog,
|
|
)
|
|
|
|
ALL_DOCUMENTS = [
|
|
User, Organization, OrgMember, Brand, Product, Batch, QRCode,
|
|
QRTemplate, ScanLog, Compliance, Plan, Subscription, PlanHistory,
|
|
Invoice, Payment, StorageUsage, AuditLog, SupportNote, Alert, EmailLog,
|
|
]
|