fix: user display limit

This commit is contained in:
Timothy J. Baek 2024-02-14 13:24:40 -08:00
parent 9704a5754e
commit 434e2c00e9
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]: