Support both pleroma:chat_mention and pleroma:emoji_reaction for /api/v1/push/subscription

This commit is contained in:
Mark Felder 2020-11-17 20:21:48 +00:00
commit 5d0bc5e028
2 changed files with 16 additions and 0 deletions

View file

@ -215,6 +215,16 @@ 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?"
},
"pleroma:emoji_reaction": %Schema{
allOf: [BooleanLike],
nullable: true,
description: "Receive emoji reaction notifications?"
}
}
}