Browse Source

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

tags/v0.9.9
William Pitcock 6 years ago
parent
commit
056305dfa7
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      lib/pleroma/user.ex

+ 5
- 0
lib/pleroma/user.ex View File

@@ -527,6 +527,11 @@ defmodule Pleroma.User 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)


Loading…
Cancel
Save