diff options
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 0da1da57d..609ea4551 100644 --- a/config/description.exs +++ b/config/description.exs @@ -2283,6 +2283,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", @@ -3716,5 +3722,25 @@ config :pleroma, :config_description, [          suggestions: [2]        }      ] +  }, +  %{ +    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] +      } +    ]    }  ] | 
