readd comment about domain mutes
This commit is contained in:
parent
3b197503d2
commit
2c5c531c35
1 changed files with 5 additions and 0 deletions
|
@ -1631,6 +1631,11 @@ defmodule Pleroma.User do
|
||||||
def blocks_domain?(%User{} = user, url) when is_binary(url) do
|
def blocks_domain?(%User{} = user, url) when is_binary(url) do
|
||||||
%{host: host} = URI.parse(url)
|
%{host: host} = URI.parse(url)
|
||||||
Enum.member?(user.domain_blocks, host)
|
Enum.member?(user.domain_blocks, host)
|
||||||
|
# TODO: functionality should probably be changed such that subdomains block as well,
|
||||||
|
# but as it stands, this just hecks up the relationships endpoint
|
||||||
|
# domain_blocks = Pleroma.Web.ActivityPub.MRF.subdomains_regex(user.domain_blocks)
|
||||||
|
# %{host: host} = URI.parse(target.ap_id)
|
||||||
|
# Pleroma.Web.ActivityPub.MRF.subdomain_match?(domain_blocks, host)
|
||||||
end
|
end
|
||||||
|
|
||||||
def blocks_domain?(_, _), do: false
|
def blocks_domain?(_, _), do: false
|
||||||
|
|
Loading…
Reference in a new issue