logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 555d7d57c9a408185617268ca810002cbd59f764
parent 6b3842cf50c063a63980c8d4dca93b25424059f2
Author: marcin mikołajczak <me@mkljczk.pl>
Date:   Thu,  9 Sep 2021 18:35:45 +0000

Add "exposable_reactions" to features, if showing reactions

Diffstat:

Mlib/pleroma/web/mastodon_api/views/instance_view.ex5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lib/pleroma/web/mastodon_api/views/instance_view.ex b/lib/pleroma/web/mastodon_api/views/instance_view.ex @@ -83,7 +83,10 @@ defmodule Pleroma.Web.MastodonAPI.InstanceView do "safe_dm_mentions" end, "pleroma_emoji_reactions", - "pleroma_chat_messages" + "pleroma_chat_messages", + if Config.get([:instance, :show_reactions]) do + "exposable_reactions" + end ] |> Enum.filter(& &1) end