Skip to content

Commit

Permalink
[hotfix] HTTP_204_OK (#28)
Browse files Browse the repository at this point in the history
HTTP_204_OK
  • Loading branch information
fjpacheco authored Jun 7, 2024
1 parent dd7c80d commit c886677
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/controller/Users.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
})
)

Expand Down

0 comments on commit c886677

Please sign in to comment.