remove reverse method

This commit is contained in:
notmd
2023-01-22 14:14:41 +07:00
parent fa5702ac9e
commit 6945cc5fe7
+1 -6
View File
@@ -269,9 +269,4 @@ class UserRepository:
if limit is not None:
qry = qry.limit(limit)
users = qry.all()
if lte_display_name and lt_id:
users.reverse()
return users
return qry.all()