We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ccd117 commit 67372b4Copy full SHA for 67372b4
backend/app/api/main.py
@@ -11,4 +11,4 @@
11
12
13
if settings.ENVIRONMENT == "local":
14
- api_router.include_router(private.router, prefix="/private", tags=["private"])
+ api_router.include_router(private.router)
backend/app/api/routes/private.py
@@ -10,7 +10,7 @@
10
UserPublic,
)
-router = APIRouter(tags=["private"])
+router = APIRouter(tags=["private"], prefix="/private")
15
16
class PrivateUserCreate(BaseModel):
0 commit comments