Release version 1.3.1: Updated backend models and endpoints

This commit is contained in:
2026-02-03 13:54:05 -07:00
parent 0d7cdf51ca
commit 2125504831
13 changed files with 1650 additions and 18 deletions

View File

@@ -21,6 +21,7 @@ from app.models.system import System
from app.models.category import Category
from app.models.user import User
from app.models.ticket import Ticket
from app.models.comment import TicketComment
from app.core.logging import setup_logging
from app.api.v1.router import api_router
@@ -198,4 +199,4 @@ if __name__ == "__main__":
host="0.0.0.0",
port=8000,
reload=settings.ENVIRONMENT == "development"
)
)