From 633afde2248f524c33dbae3d36ef5587bbdcae1d Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Tue, 23 Dec 2025 13:22:35 -0300 Subject: [PATCH] Added new endpoint for onboarding --- src/main.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main.py b/src/main.py index 710b3dab..3d25e0e0 100644 --- a/src/main.py +++ b/src/main.py @@ -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",