diff options
author | Alex Gleason <alex@alexgleason.me> | 2020-07-28 14:49:49 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2020-07-28 14:58:30 -0500 |
commit | 3b7c454418700ca36c0a71272f913ea8c6e464e9 (patch) | |
tree | eeaf8e0def7aef829c72384d4d1942a04320ef22 /config | |
parent | f462f1c101b1a82cbe633a55368b04582e4fcbd4 (diff) | |
download | pleroma-3b7c454418700ca36c0a71272f913ea8c6e464e9.tar.gz pleroma-3b7c454418700ca36c0a71272f913ea8c6e464e9.zip |
Let favourites and emoji reactions optionally be hidden
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 3 | ||||
-rw-r--r-- | config/description.exs | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/config/config.exs b/config/config.exs index 48fe7c669..903a92cca 100644 --- a/config/config.exs +++ b/config/config.exs @@ -250,7 +250,8 @@ config :pleroma, :instance, number: 5, length: 16 ] - ] + ], + show_reactions: true config :pleroma, :welcome, direct_message: [ diff --git a/config/description.exs b/config/description.exs index 91261c1e1..9dc87824b 100644 --- a/config/description.exs +++ b/config/description.exs @@ -942,6 +942,11 @@ config :pleroma, :config_description, [ description: "The instance thumbnail can be any image that represents your instance and is used by some apps or services when they display information about your instance.", suggestions: ["/instance/thumbnail.jpeg"] + }, + %{ + key: :show_reactions, + type: :boolean, + description: "Let favourites and emoji reactions be viewed through the API." } ] }, |