Merge pull request #732 from ollama-webui/user-display-limit

fix: user display limit
This commit is contained in:
Timothy Jaeryang Baek 2024-02-14 16:25:11 -05:00 committed by GitHub
commit 9e50a80819
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -92,7 +92,8 @@ class UsersTable:
def get_users(self, skip: int = 0, limit: int = 50) -> List[UserModel]:
return [
UserModel(**model_to_dict(user))
for user in User.select().limit(limit).offset(skip)
for user in User.select()
# .limit(limit).offset(skip)
]
def get_num_users(self) -> Optional[int]: