forked from AkkomaGang/akkoma
Order users by nickname
This commit is contained in:
parent
6d6f48d079
commit
cb2bdd5c07
1 changed files with 1 additions and 1 deletions
|
@ -773,7 +773,7 @@ def get_recipients_from_activity(%Activity{recipients: to}) do
|
|||
}) :: {:ok, [Pleroma.User.t()], number()}
|
||||
def search_for_admin(%{query: nil, local: local, page: page, page_size: page_size}) do
|
||||
query =
|
||||
from(u in User, order_by: u.id)
|
||||
from(u in User, order_by: u.nickname)
|
||||
|> maybe_local_user_query(local)
|
||||
|
||||
paginated_query =
|
||||
|
|
Loading…
Reference in a new issue