diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-05-28 10:16:09 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-05-28 10:16:09 -0500 |
commit | 9eea80002673eb1359a2d4369c65a89c42c2f707 (patch) | |
tree | 9be8d8041606909c9374e8fb323cf089d918f282 /lib/pleroma/web/api_spec | |
parent | 089d72d2e6bb1f3c3674162c5c9a7c4988241358 (diff) | |
download | pleroma-9eea80002673eb1359a2d4369c65a89c42c2f707.tar.gz |
Refactor notification settings
Diffstat (limited to 'lib/pleroma/web/api_spec')
-rw-r--r-- | lib/pleroma/web/api_spec/schemas/account.ex | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/lib/pleroma/web/api_spec/schemas/account.ex b/lib/pleroma/web/api_spec/schemas/account.ex index d54e2158d..ed90ef3db 100644 --- a/lib/pleroma/web/api_spec/schemas/account.ex +++ b/lib/pleroma/web/api_spec/schemas/account.ex @@ -57,10 +57,9 @@ 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}, + from_followers: %Schema{type: :boolean}, + from_following: %Schema{type: :boolean}, + from_strangers: %Schema{type: :boolean}, privacy_option: %Schema{type: :boolean} } }, @@ -123,10 +122,9 @@ defmodule Pleroma.Web.ApiSpec.Schemas.Account do "unread_conversation_count" => 0, "tags" => [], "notification_settings" => %{ - "followers" => true, - "follows" => true, - "non_followers" => true, - "non_follows" => true, + "from_followers" => true, + "from_following" => true, + "from_strangers" => true, "privacy_option" => false }, "relationship" => %{ |