Added new endpoint for onboarding

This commit is contained in:
Lucas Oliveira 2025-12-23 13:22:35 -03:00
parent 98ff3e2f8b
commit 633afde224

View file

@ -1140,6 +1140,13 @@ async def create_app():
),
methods=["POST"],
),
Route(
"/onboarding/state",
require_auth(services["session_manager"])(
settings.update_onboarding_state
),
methods=["POST"],
),
# Provider health check endpoint
Route(
"/provider/health",