Merge branch 'develop' into activation-meta
[akkoma] / lib / pleroma / web / admin_api / search.ex
index 29cea1f44dbf59f5fba6cbf5ec7346d096c6e92a..0bfb8f02261ec953ca675edc00cfb601de46986d 100644 (file)
@@ -21,6 +21,7 @@ defmodule Pleroma.Web.AdminAPI.Search do
     query =
       params
       |> Map.drop([:page, :page_size])
+      |> Map.put(:invisible, false)
       |> User.Query.build()
       |> order_by([u], u.nickname)
 
@@ -30,7 +31,6 @@ defmodule Pleroma.Web.AdminAPI.Search do
     count = Repo.aggregate(query, :count, :id)
 
     results = Repo.all(paginated_query)
-
     {:ok, results, count}
   end
 end