Add TLSync token endpoint
This commit is contained in:
@@ -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"])
|
||||
|
||||
Reference in New Issue
Block a user