From 47e7b6580130e3bdee498cdf8649564e7c2dc7e0 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Sat, 22 Mar 2025 21:48:34 +0000 Subject: [PATCH] Update code in endpoints/users.get.py --- endpoints/users.get.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/endpoints/users.get.py b/endpoints/users.get.py index 74ce25a..264ec21 100644 --- a/endpoints/users.get.py +++ b/endpoints/users.get.py @@ -9,13 +9,13 @@ async def get_users(): """Get all users endpoint""" if not users: raise HTTPException(status_code=404, detail="No users found") - + return { "message": "Users retrieved successfully", "users": users, "count": len(users), "features": { "pagination": False, - "filtering": False + "search": False } } \ No newline at end of file