load-authors-by-rating
All checks were successful
Deploy on push / deploy (push) Successful in 1m46s

This commit is contained in:
Untone 2024-02-25 09:31:06 +03:00
parent 40305ad35d
commit d58bbe3499

View File

@ -111,7 +111,7 @@ def load_authors_by(_, _info, by, limit, offset):
q = q.limit(limit).offset(offset)
authors = get_authors_with_stat(q)
authors = get_authors_with_stat(q, ratings=True)
return authors