diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-08-03 17:08:35 -0500 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2021-06-01 11:49:14 -0500 |
commit | ff00b354fa5067c898e860e275748dd757cb04cd (patch) | |
tree | ce76a36f0020178521a9c357684fb7b36c8d548a /config | |
parent | ee52fc840d4d6eb1caab811a9b00ab1b95662d77 (diff) | |
download | pleroma-ff00b354fa5067c898e860e275748dd757cb04cd.tar.gz |
Rename the non-federating Chat feature to Shout
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 4 | ||||
-rw-r--r-- | config/description.exs | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/config/config.exs b/config/config.exs index d333c618e..8c8ed5224 100644 --- a/config/config.exs +++ b/config/config.exs @@ -190,7 +190,7 @@ config :pleroma, :instance, instance_thumbnail: "/instance/thumbnail.jpeg", limit: 5_000, description_limit: 5_000, - chat_limit: 5_000, + shout_limit: 5_000, remote_limit: 100_000, upload_limit: 16_000_000, avatar_upload_limit: 2_000_000, @@ -457,7 +457,7 @@ config :pleroma, :media_preview_proxy, image_quality: 85, min_content_length: 100 * 1024 -config :pleroma, :chat, enabled: true +config :pleroma, :shoutbox, enabled: true config :phoenix, :format_encoders, json: Jason diff --git a/config/description.exs b/config/description.exs index f00c53d28..040deab96 100644 --- a/config/description.exs +++ b/config/description.exs @@ -545,9 +545,9 @@ config :pleroma, :config_description, [ ] }, %{ - key: :chat_limit, + key: :shout_limit, type: :integer, - description: "Character limit of the instance chat messages", + description: "Character limit of the instance shout messages", suggestions: [ 5_000 ] @@ -2652,9 +2652,9 @@ config :pleroma, :config_description, [ }, %{ group: :pleroma, - key: :chat, + key: :shout, type: :group, - description: "Pleroma chat settings", + description: "Pleroma shout settings", children: [ %{ key: :enabled, |