notification: remove local/remote match rules (too complicated)

This commit is contained in:
William Pitcock 2019-05-26 00:05:47 +00:00
parent 5fbbc57c1b
commit 750ede5764
2 changed files with 1 additions and 10 deletions

View File

@ -169,7 +169,6 @@ def skip?(activity, user) do
[
:self,
:blocked,
:local,
:muted,
:followers,
:follows,
@ -189,12 +188,6 @@ def skip?(:blocked, activity, user) do
User.blocks?(user, %{ap_id: actor})
end
def skip?(:local, %{local: true}, %{info: %{notification_settings: %{"local" => false}}}),
do: true
def skip?(:local, %{local: false}, %{info: %{notification_settings: %{"remote" => false}}}),
do: true
def skip?(:muted, activity, user) do
actor = activity.data["actor"]

View File

@ -48,8 +48,6 @@ defmodule Pleroma.User.Info do
field(:notification_settings, :map,
default: %{
"remote" => true,
"local" => true,
"followers" => true,
"follows" => true,
"non_follows" => true,
@ -83,7 +81,7 @@ def update_notification_settings(info, settings) do
notification_settings =
info.notification_settings
|> Map.merge(settings)
|> Map.take(["remote", "local", "followers", "follows", "non_follows", "non_followers"])
|> Map.take(["followers", "follows", "non_follows", "non_followers"])
params = %{notification_settings: notification_settings}