User search respect discoverable flag

This commit is contained in:
stwf 2020-09-14 11:40:52 -04:00
commit 41939e3175
6 changed files with 45 additions and 21 deletions

View file

@ -177,5 +177,14 @@ defmodule Pleroma.Web.AdminAPI.SearchTest do
assert total == 3
assert count == 1
end
test "it returns non-discoverable users" do
insert(:user)
insert(:user, discoverable: false)
{:ok, _results, total} = Search.user()
assert total == 2
end
end
end