diff options
author | marcin mikołajczak <git@mkljczk.pl> | 2024-05-18 11:30:25 +0200 |
---|---|---|
committer | marcin mikołajczak <git@mkljczk.pl> | 2024-05-18 11:30:25 +0200 |
commit | 2e76ceb5b4c8abf860f9d078c80ae0fcbe1a4ffd (patch) | |
tree | 6a803ea5efa8f6a93f04d657f3cb56a0b9ff5b17 /config/description.exs | |
parent | 1ed8ae2d8e86ed26d4e21f59e95995795bcb282b (diff) | |
parent | 99eab1fa2a39b7a7fba6cdbb92c01e9c7c81aa88 (diff) | |
download | pleroma-2e76ceb5b4c8abf860f9d078c80ae0fcbe1a4ffd.tar.gz pleroma-2e76ceb5b4c8abf860f9d078c80ae0fcbe1a4ffd.zip |
Merge remote-tracking branch 'origin/develop' into status-notification-type
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat (limited to 'config/description.exs')
-rw-r--r-- | config/description.exs | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/config/description.exs b/config/description.exs index 78e7710cb..9cc3d469e 100644 --- a/config/description.exs +++ b/config/description.exs @@ -567,6 +567,20 @@ config :pleroma, :config_description, [ ] }, %{ + key: :status_page, + type: :string, + description: "A page where people can see the status of the server during an outage", + suggestions: [ + "https://status.pleroma.example.org" + ] + }, + %{ + key: :contact_username, + type: :string, + description: "Instance owner username", + suggestions: ["admin"] + }, + %{ key: :limit, type: :integer, description: "Posts character limit (CW/Subject included in the counter)", @@ -3508,7 +3522,7 @@ config :pleroma, :config_description, [ }, %{ key: :initial_indexing_chunk_size, - type: :int, + type: :integer, description: "Amount of posts in a batch when running the initial indexing operation. Should probably not be more than 100000" <> " since there's a limit on maximum insert size", |