diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-11-04 17:48:10 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-11-04 17:48:10 +0300 |
commit | 73e66fd31fdfe8cc483fb77df235ddef31708aeb (patch) | |
tree | 26e4d4e4f62e95c808dbe3a2a820de9b4ab9dd02 /config/description.exs | |
parent | 04f6b48ac1a76fe9c6c3fd573427d418bc152adf (diff) | |
parent | 9c09ea01aa8c93e02b5697e27f0a8458b624b161 (diff) | |
download | pleroma-73e66fd31fdfe8cc483fb77df235ddef31708aeb.tar.gz pleroma-73e66fd31fdfe8cc483fb77df235ddef31708aeb.zip |
Merge remote-tracking branch 'remotes/origin/develop' into auth-improvements
Diffstat (limited to 'config/description.exs')
-rw-r--r-- | config/description.exs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/config/description.exs b/config/description.exs index 798cbe2ad..0b651696b 100644 --- a/config/description.exs +++ b/config/description.exs @@ -2298,6 +2298,12 @@ config :pleroma, :config_description, [ suggestions: [10] }, %{ + key: :backup, + type: :integer, + description: "Backup queue", + suggestions: [1] + }, + %{ key: :attachments_cleanup, type: :integer, description: "Attachment deletion queue", @@ -3733,6 +3739,26 @@ config :pleroma, :config_description, [ ] }, %{ + group: :pleroma, + key: Pleroma.User.Backup, + type: :group, + description: "Account Backup", + children: [ + %{ + key: :purge_after_days, + type: :integer, + description: "Remove backup achives after N days", + suggestions: [30] + }, + %{ + key: :limit_days, + type: :integer, + description: "Limit user to export not more often than once per N days", + suggestions: [7] + } + ] + }, + %{ group: :prometheus, key: Pleroma.Web.Endpoint.MetricsExporter, type: :group, |