Merge remote-tracking branch 'origin/COG-206' into COG-206

This commit is contained in:
Vasilije 2024-07-24 17:00:12 +02:00
commit a93bd53529

View file

@ -114,9 +114,6 @@ app.include_router(
)
@app.get("/authenticated-route")
async def authenticated_route(user: User = Depends(current_active_user)):
return {"message": f"Hello {user.email}!"}
@app.get("/")
async def root():