diff options
author | lain <lain@soykaf.club> | 2020-05-06 11:44:30 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-05-06 11:44:30 +0200 |
commit | 205313e54146c00374e3edfa951132a7229fa16d (patch) | |
tree | db392c5ef71a2a40fb8a041635d2536b34dc454d /config/description.exs | |
parent | 9637cded21cef1e6c531dd46d5f5245c4c3ed03c (diff) | |
parent | 07e7c80bc9e919cd92ca9dda1e21384142e5bd77 (diff) | |
download | pleroma-205313e54146c00374e3edfa951132a7229fa16d.tar.gz pleroma-205313e54146c00374e3edfa951132a7229fa16d.zip |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into remake-remodel-dms
Diffstat (limited to 'config/description.exs')
-rw-r--r-- | config/description.exs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/description.exs b/config/description.exs index 9d8e3b93c..1b2afebef 100644 --- a/config/description.exs +++ b/config/description.exs @@ -2247,6 +2247,7 @@ config :pleroma, :config_description, [ children: [ %{ key: :active, + label: "Enabled", type: :boolean, description: "Globally enable or disable digest emails" }, @@ -3194,5 +3195,19 @@ config :pleroma, :config_description, [ ] } ] + }, + %{ + group: :pleroma, + key: Pleroma.Web.ApiSpec.CastAndValidate, + type: :group, + children: [ + %{ + key: :strict, + type: :boolean, + description: + "Enables strict input validation (useful in development, not recommended in production)", + suggestions: [false] + } + ] } ] |