forked from AkkomaGang/akkoma
Stats: Use invisible
property for filtering.
This commit is contained in:
parent
8b88e2a6e2
commit
f5bda09de6
2 changed files with 1 additions and 3 deletions
|
@ -82,8 +82,7 @@ def calculate_stat_data do
|
|||
where: u.deactivated != true,
|
||||
where: u.local == true,
|
||||
where: not is_nil(u.nickname),
|
||||
where: fragment("? not like 'internal.%'", u.nickname),
|
||||
where: fragment("? not like '%/relay'", u.ap_id)
|
||||
where: not u.invisible
|
||||
)
|
||||
|
||||
user_count = Repo.aggregate(users_query, :count, :id)
|
||||
|
|
|
@ -11,7 +11,6 @@ defmodule Pleroma.StatsTest do
|
|||
test "it ignores internal users" do
|
||||
_user = insert(:user, local: true)
|
||||
_internal = insert(:user, local: true, nickname: nil)
|
||||
_internal = insert(:user, local: true, nickname: "internal.dude")
|
||||
_internal = Pleroma.Web.ActivityPub.Relay.get_actor()
|
||||
|
||||
assert match?(%{stats: %{user_count: 1}}, Pleroma.Stats.calculate_stat_data())
|
||||
|
|
Loading…
Reference in a new issue