diff options
author | lain <lain@soykaf.club> | 2020-06-04 20:28:33 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-06-04 20:28:33 +0200 |
commit | d44da91bbf50ae91e8246ebe3669cfaf1fabda1b (patch) | |
tree | f18dc6def5772013a8f47002e0eeb32210938363 /lib | |
parent | 74edd4f39174c2d0445772acc5c284b1575414f9 (diff) | |
download | pleroma-d44da91bbf50ae91e8246ebe3669cfaf1fabda1b.tar.gz |
SubscriptionOperation: Let chat mentions through.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/api_spec/operations/subscription_operation.ex | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/pleroma/web/api_spec/operations/subscription_operation.ex b/lib/pleroma/web/api_spec/operations/subscription_operation.ex index c575a87e6..775dd795d 100644 --- a/lib/pleroma/web/api_spec/operations/subscription_operation.ex +++ b/lib/pleroma/web/api_spec/operations/subscription_operation.ex @@ -141,6 +141,11 @@ defmodule Pleroma.Web.ApiSpec.SubscriptionOperation do allOf: [BooleanLike], nullable: true, description: "Receive poll notifications?" + }, + "pleroma:chat_mention": %Schema{ + allOf: [BooleanLike], + nullable: true, + description: "Receive chat notifications?" } } } |