diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-07-15 09:30:23 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-07-15 09:30:23 -0500 |
commit | 9d30bacaceaaec9fe2a7993b55149faef3516846 (patch) | |
tree | d26ede9f244a11c7de36589cbf034bb2caf886a3 /config/description.exs | |
parent | 80c21100db306ce45856bbdb97d3439676babeeb (diff) | |
parent | 0fe36b311c010f9a4bd3c1600ce874c5403a7368 (diff) | |
download | pleroma-9d30bacaceaaec9fe2a7993b55149faef3516846.tar.gz pleroma-9d30bacaceaaec9fe2a7993b55149faef3516846.zip |
Merge branch 'develop' into refactor/notification_settings
Diffstat (limited to 'config/description.exs')
-rw-r--r-- | config/description.exs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/config/description.exs b/config/description.exs index 84dcdb87e..afc4dcd79 100644 --- a/config/description.exs +++ b/config/description.exs @@ -1768,8 +1768,8 @@ config :pleroma, :config_description, [ %{ key: :whitelist, type: {:list, :string}, - description: "List of domains to bypass the mediaproxy", - suggestions: ["example.com"] + description: "List of hosts with scheme to bypass the mediaproxy", + suggestions: ["http://example.com"] } ] }, @@ -2008,13 +2008,15 @@ config :pleroma, :config_description, [ label: "Pleroma Admin Token", type: :group, description: - "Allows to set a token that can be used to authenticate with the admin api without using an actual user by giving it as the `admin_token` parameter", + "Allows setting a token that can be used to authenticate requests with admin privileges without a normal user account token. Append the `admin_token` parameter to requests to utilize it. (Please reconsider using HTTP Basic Auth or OAuth-based authentication if possible)", children: [ %{ key: :admin_token, type: :string, description: "Admin token", - suggestions: ["We recommend a secure random string or UUID"] + suggestions: [ + "Please use a high entropy string or UUID" + ] } ] }, |