This commit is contained in:
Jörn-Michael Miehe 2022-03-23 13:40:14 +00:00
parent 673c91bc33
commit 70df7a47db

View file

@ -69,7 +69,7 @@ async def get_current_user(
@router.post( @router.post(
"/", "",
responses={ responses={
status.HTTP_200_OK: Responses.OK, status.HTTP_200_OK: Responses.OK,
status.HTTP_400_BAD_REQUEST: Responses.NOT_INSTALLED, status.HTTP_400_BAD_REQUEST: Responses.NOT_INSTALLED,
@ -131,7 +131,7 @@ async def remove_user(
) )
# fail if deletion was unsuccessful # fail if deletion was unsuccessful
if not user.delete(): if not user.delete(db):
raise HTTPException(status_code=status.HTTP_409_CONFLICT) raise HTTPException(status_code=status.HTTP_409_CONFLICT)