- 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
21 lines
441 B
Python
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"
|
|
] |