Merge branch agent/tlsync-token-t_a69128a1 (TLSync JWT token endpoint)
api-ci-deploy / test-build-deploy (push) Has been cancelled

This commit is contained in:
2026-05-28 18:04:25 +01:00
4 changed files with 145 additions and 0 deletions
+4
View File
@@ -39,6 +39,7 @@ 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.me.bootstrap_router import router as me_bootstrap_router
from routers import tlsync_token as tlsync_token_router
def register_routes(app: FastAPI):
logger.info("Starting to register routes...")
@@ -128,6 +129,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"])