Files
service_manager/backend/app/models/__init__.py
icamarillo 91ff49cdec feat(backend): Update models and endpoints configuration
- Enhanced ticket and comment models with proper relationships
- Updated client_profile model for better data handling
- Improved auth endpoint with better error handling
- Updated main app configuration and imports
- Added new dependencies to requirements.txt
- Enhanced tickets endpoint with attachment support
2026-02-09 13:28:40 -07:00

21 lines
441 B
Python

"""Models package initialization."""
from .user import User
from .tenant import Tenant
from .ticket import Ticket
from .comment import TicketComment
from .system import System
from .category import Category
from .client_profile import ClientProfile
from .attachment import TicketAttachment
__all__ = [
"User",
"Tenant",
"Ticket",
"TicketComment",
"System",
"Category",
"ClientProfile",
"TicketAttachment"
]