Change user.deactivated field to user.is_active
This commit is contained in:
parent
cf367fdbd5
commit
860b5c7804
40 changed files with 125 additions and 107 deletions
|
|
@ -75,7 +75,7 @@ defmodule Pleroma.Stats do
|
|||
|
||||
users_query =
|
||||
from(u in User,
|
||||
where: u.deactivated != true,
|
||||
where: u.is_active == true,
|
||||
where: u.local == true,
|
||||
where: not is_nil(u.nickname),
|
||||
where: not u.invisible
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue