diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-06-26 11:24:28 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-06-26 11:24:28 -0500 |
commit | fd5e797379155e5a85deb88dc79f8fbca483948e (patch) | |
tree | bf7790ebc43a79cdb87815b0de271126fb9fe606 /test/web/mastodon_api | |
parent | b950fb01db51f14a9fd3a827b90573418a5b95da (diff) | |
download | pleroma-fd5e797379155e5a85deb88dc79f8fbca483948e.tar.gz pleroma-fd5e797379155e5a85deb88dc79f8fbca483948e.zip |
Simplify notification filtering settings further
Diffstat (limited to 'test/web/mastodon_api')
-rw-r--r-- | test/web/mastodon_api/views/account_view_test.exs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/web/mastodon_api/views/account_view_test.exs b/test/web/mastodon_api/views/account_view_test.exs index 572830194..b6d820b3f 100644 --- a/test/web/mastodon_api/views/account_view_test.exs +++ b/test/web/mastodon_api/views/account_view_test.exs @@ -96,9 +96,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do user = insert(:user) notification_settings = %{ - from_followers: true, - from_following: true, - from_strangers: true, + block_from_strangers: false, privacy_option: false } |