mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
fix: get users
This commit is contained in:
parent
d3ba77837a
commit
70a108e54f
1 changed files with 5 additions and 1 deletions
|
|
@ -27,7 +27,11 @@ router = APIRouter()
|
|||
|
||||
|
||||
@router.get("/", response_model=list[UserModel])
|
||||
async def get_users(skip: int = 0, limit: int = 50, user=Depends(get_admin_user)):
|
||||
async def get_users(
|
||||
skip: Optional[int] = None,
|
||||
limit: Optional[int] = None,
|
||||
user=Depends(get_admin_user),
|
||||
):
|
||||
return Users.get_users(skip, limit)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue