Merge branch 'bug/restrict-follows-to-approved' into 'master'

Restrict follows to approved actors/instances

See merge request framasoft/mobilizon!371
This commit is contained in:
Thomas Citharel 2019-12-19 13:57:11 +01:00
commit 7922d4a66c
1 changed files with 1 additions and 1 deletions

View File

@ -934,7 +934,7 @@ defmodule Mobilizon.Actors do
a in Actor,
join: f in Follower,
on: a.id == f.actor_id,
where: f.target_actor_id == ^actor_id
where: f.target_actor_id == ^actor_id and f.approved == true
)
end