X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=config%2Fdescription.exs;h=6b151a59f4b9bb4f15cf2761e38fc4c6f02a342b;hb=439ec4913793b306706b148a1a6b9d344d0bc1df;hp=1059039e7afaf77c050c0268563b2465ae9d6dd8;hpb=18bf82d7479b0bb767a657e1b7447529f9c2884f;p=akkoma diff --git a/config/description.exs b/config/description.exs index 1059039e7..6b151a59f 100644 --- a/config/description.exs +++ b/config/description.exs @@ -2661,6 +2661,12 @@ config :pleroma, :config_description, [ "What user agent to use. Must be a string or an atom `:default`. Default value is `:default`.", suggestions: ["Pleroma", :default] }, + %{ + key: :pool_size, + type: :integer, + description: "Number of concurrent outbound HTTP requests to allow. Default 50.", + suggestions: [50] + }, %{ key: :adapter, type: :keyword, @@ -3436,5 +3442,32 @@ config :pleroma, :config_description, [ suggestion: [nil] } ] + }, + %{ + group: :pleroma, + key: :argos_translate, + type: :group, + description: "ArgosTranslate Settings.", + children: [ + %{ + key: :command_argos_translate, + type: :string, + description: + "command for `argos-translate`. Can be the command if it's in your PATH, or the full path to the file.", + suggestion: ["argos-translate"] + }, + %{ + key: :command_argospm, + type: :string, + description: + "command for `argospm`. Can be the command if it's in your PATH, or the full path to the file.", + suggestion: ["argospm"] + }, + %{ + key: :strip_html, + type: :boolean, + description: "Strip html from the post before translating it." + } + ] } ]