ph4 #52

Merged
mo merged 4 commits from ph4 into prod 2025-06-02 19:09:21 +02:00
Showing only changes of commit 6b54566cef - Show all commits

View File

@ -184,8 +184,14 @@ app.include_router(
tags=["users"],
)
# Include OAuth routes
# app.include_router(oauth_router, prefix="/auth", tags=["auth"])
# Include your API router
app.include_router(api_router, prefix=settings.API_PREFIX)
# Include OAuth routes under the main API prefix
app.include_router(oauth_router, prefix=f"{settings.API_PREFIX}/auth", tags=["auth"])
# --- End Include API Routers ---
# Health check endpoint