aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/api_spec/schemas
diff options
context:
space:
mode:
authorRoman Chvanikov <chvanikoff@pm.me>2020-07-15 18:29:23 +0300
committerRoman Chvanikov <chvanikoff@pm.me>2020-07-15 18:29:23 +0300
commit24c603c27273a60446f8ed1e8e70ad915e0adce6 (patch)
treed3ff4c93b182c374bf182a0caea0da57ef3b82d5 /lib/pleroma/web/api_spec/schemas
parent62686541e4ee0460463247f43a1e71696b96d1df (diff)
parent00f9b53f07346d052adab105bde3428c98fc4660 (diff)
downloadpleroma-24c603c27273a60446f8ed1e8e70ad915e0adce6.tar.gz
Merge develop
Diffstat (limited to 'lib/pleroma/web/api_spec/schemas')
-rw-r--r--lib/pleroma/web/api_spec/schemas/account.ex14
1 files changed, 4 insertions, 10 deletions
diff --git a/lib/pleroma/web/api_spec/schemas/account.ex b/lib/pleroma/web/api_spec/schemas/account.ex
index cf148bc9d..ca79f0747 100644
--- a/lib/pleroma/web/api_spec/schemas/account.ex
+++ b/lib/pleroma/web/api_spec/schemas/account.ex
@@ -90,11 +90,8 @@ defmodule Pleroma.Web.ApiSpec.Schemas.Account do
notification_settings: %Schema{
type: :object,
properties: %{
- followers: %Schema{type: :boolean},
- follows: %Schema{type: :boolean},
- non_followers: %Schema{type: :boolean},
- non_follows: %Schema{type: :boolean},
- privacy_option: %Schema{type: :boolean}
+ block_from_strangers: %Schema{type: :boolean},
+ hide_notification_contents: %Schema{type: :boolean}
}
},
relationship: AccountRelationship,
@@ -182,11 +179,8 @@ defmodule Pleroma.Web.ApiSpec.Schemas.Account do
"unread_conversation_count" => 0,
"tags" => [],
"notification_settings" => %{
- "followers" => true,
- "follows" => true,
- "non_followers" => true,
- "non_follows" => true,
- "privacy_option" => false
+ "block_from_strangers" => false,
+ "hide_notification_contents" => false
},
"relationship" => %{
"blocked_by" => false,