Remove items

This commit is contained in:
Jimmy 2022-01-13 03:12:19 +00:00
parent 7307abf7d8
commit fd5fc0a85d
1 changed files with 0 additions and 3 deletions

View File

@ -9,6 +9,3 @@ async def read_users_me(current_user: User = Depends(get_current_active_user)):
return current_user
@router.get("/users/me/items/")
async def read_own_items(current_user: User = Depends(get_current_active_user)):
return [{"item_id": "Foo", "owner": current_user.username}]