diff --git a/app/controller/Users.py b/app/controller/Users.py index 8192116..80de837 100644 --- a/app/controller/Users.py +++ b/app/controller/Users.py @@ -30,10 +30,10 @@ def handle_get_users(self, query_params: dict): }) ) return JSONResponse( - status_code=status.HTTP_204_OK, + status_code=status.HTTP_204_NO_CONTENT, content=jsonable_encoder({ "message": "no users found", - "status": status.HTTP_204_OK, + "status": status.HTTP_204_NO_CONTENT, }) )