Order users by nickname
This commit is contained in:
parent
6d6f48d079
commit
93291c3d7a
2 changed files with 2 additions and 3 deletions
|
|
@ -773,7 +773,7 @@ defmodule Pleroma.User 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…
Add table
Add a link
Reference in a new issue