logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 8ff2d8d17d057d5a2e0f5df603812155d6985df0
parent d6432a65da7ad11f1383d465370c11de5a2d7ddc
Author: Mark Felder <feld@FreeBSD.org>
Date:   Tue,  4 Aug 2020 10:45:28 -0500

Update description file for new shout config setting location

Diffstat:

Mconfig/description.exs19++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/config/description.exs b/config/description.exs @@ -545,14 +545,6 @@ config :pleroma, :config_description, [ ] }, %{ - key: :shout_limit, - type: :integer, - description: "Character limit of the instance shout messages", - suggestions: [ - 5_000 - ] - }, - %{ key: :remote_limit, type: :integer, description: "Hard character limit beyond which remote posts will be dropped", @@ -2658,7 +2650,16 @@ config :pleroma, :config_description, [ children: [ %{ key: :enabled, - type: :boolean + type: :boolean, + description: "Enables the backend Shoutbox chat feature." + }, + %{ + key: :limit, + type: :integer, + description: "Shout message character limit.", + suggestions: [ + 5_000 + ] } ] },