user: add helper function to fetch a user given only an ap_id (fix tests)

This commit is contained in:
William Pitcock 2018-06-19 08:31:06 +00:00
parent 3707a7fa42
commit 056305dfa7
1 changed files with 5 additions and 0 deletions

View File

@ -527,6 +527,11 @@ def block(blocker, %User{ap_id: ap_id} = blocked) do
update_and_set_cache(cs)
end
# helper to handle the block given only an actor's AP id
def block(blocker, %{ap_id: ap_id}) do
block(blocker, User.get_by_ap_id(ap_id))
end
def unblock(user, %{ap_id: ap_id}) do
blocks = user.info["blocks"] || []
new_blocks = List.delete(blocks, ap_id)