Add TLSync token endpoint

This commit is contained in:
2026-05-28 17:55:37 +01:00
parent 550d405935
commit 7808a0ae56
4 changed files with 145 additions and 0 deletions
+4
View File
@@ -38,6 +38,7 @@ from routers import provisioning as provisioning_router
from routers.transcribe.sessions import router as sessions_router
from routers.transcribe.canvas_events import router as canvas_events_router
from routers.transcribe.keywords import router as keywords_router
from routers import tlsync_token as tlsync_token_router
def register_routes(app: FastAPI):
logger.info("Starting to register routes...")
@@ -124,6 +125,9 @@ def register_routes(app: FastAPI):
# Provisioning Routes
app.include_router(provisioning_router.router)
# TLSync auth token route
app.include_router(tlsync_token_router.router, prefix="/api/tlsync", tags=["TLSync"])
# Transcription Routes (CIS Phase 1)
app.include_router(sessions_router, prefix="/transcribe", tags=["Transcription Sessions"])
app.include_router(canvas_events_router, prefix="/transcribe", tags=["Transcription Canvas Events"])