Set type :select to settings that are rendered as single selects

This commit is contained in:
Angelina Filippova 2021-03-27 00:11:04 +03:00
parent 68d3d04274
commit 67f7822b17

View File

@ -311,7 +311,7 @@ config :pleroma, :config_description, [
group: {:subgroup, Swoosh.Adapters.SMTP}, group: {:subgroup, Swoosh.Adapters.SMTP},
key: :tls, key: :tls,
label: "STARTTLS Mode", label: "STARTTLS Mode",
type: {:dropdown, :atom}, type: :select,
description: "Explicit TLS (STARTTLS) enforcement mode", description: "Explicit TLS (STARTTLS) enforcement mode",
suggestions: [:if_available, :always, :never] suggestions: [:if_available, :always, :never]
}, },
@ -319,7 +319,7 @@ config :pleroma, :config_description, [
group: {:subgroup, Swoosh.Adapters.SMTP}, group: {:subgroup, Swoosh.Adapters.SMTP},
key: :auth, key: :auth,
label: "AUTH Mode", label: "AUTH Mode",
type: {:dropdown, :atom}, type: :select,
description: "SMTP AUTH enforcement mode", description: "SMTP AUTH enforcement mode",
suggestions: [:if_available, :always, :never] suggestions: [:if_available, :always, :never]
}, },
@ -816,7 +816,7 @@ config :pleroma, :config_description, [
}, },
%{ %{
key: :limit_to_local_content, key: :limit_to_local_content,
type: {:dropdown, :atom}, type: :select,
description: description:
"Limit unauthenticated users to search for local statutes and users only. Default: `:unauthenticated`.", "Limit unauthenticated users to search for local statutes and users only. Default: `:unauthenticated`.",
suggestions: [ suggestions: [
@ -1075,7 +1075,7 @@ config :pleroma, :config_description, [
children: [ children: [
%{ %{
key: :level, key: :level,
type: {:dropdown, :atom}, type: :select,
description: "Log level", description: "Log level",
suggestions: [:debug, :info, :warn, :error] suggestions: [:debug, :info, :warn, :error]
}, },
@ -1109,7 +1109,7 @@ config :pleroma, :config_description, [
children: [ children: [
%{ %{
key: :level, key: :level,
type: {:dropdown, :atom}, type: :select,
description: "Log level", description: "Log level",
suggestions: [:debug, :info, :warn, :error] suggestions: [:debug, :info, :warn, :error]
}, },
@ -1135,7 +1135,7 @@ config :pleroma, :config_description, [
children: [ children: [
%{ %{
key: :level, key: :level,
type: {:dropdown, :atom}, type: :select,
description: "Log level", description: "Log level",
suggestions: [:debug, :info, :warn, :error] suggestions: [:debug, :info, :warn, :error]
}, },
@ -1287,7 +1287,7 @@ config :pleroma, :config_description, [
%{ %{
key: :postContentType, key: :postContentType,
label: "Post Content Type", label: "Post Content Type",
type: {:dropdown, :atom}, type: :select,
description: "Default post formatting option", description: "Default post formatting option",
suggestions: ["text/plain", "text/html", "text/markdown", "text/bbcode"] suggestions: ["text/plain", "text/html", "text/markdown", "text/bbcode"]
}, },
@ -1486,7 +1486,7 @@ config :pleroma, :config_description, [
}, },
%{ %{
key: :provider, key: :provider,
type: :module, type: :select,
description: "Module which will be used to purge objects from the cache.", description: "Module which will be used to purge objects from the cache.",
suggestions: [ suggestions: [
Pleroma.Web.MediaProxy.Invalidation.Script, Pleroma.Web.MediaProxy.Invalidation.Script,
@ -1851,7 +1851,7 @@ config :pleroma, :config_description, [
children: [ children: [
%{ %{
key: :log, key: :log,
type: {:dropdown, :atom}, type: :select,
description: "Logs verbose mode", description: "Logs verbose mode",
suggestions: [false, :error, :warn, :info, :debug] suggestions: [false, :error, :warn, :info, :debug]
}, },