diff options
author | Alexander <alex.strizhakov@gmail.com> | 2019-12-16 18:13:22 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-01-10 15:52:01 +0300 |
commit | f9d01068cf0d47040abc3d51f8ea8a3a264c027f (patch) | |
tree | 9534969782a83d11c7fee5c770b706b314d7d4a3 | |
parent | bb9a43c3ae7c63b21b687d018b9497f3614566bf (diff) | |
download | pleroma-f9d01068cf0d47040abc3d51f8ea8a3a264c027f.tar.gz |
suggestions fix
-rw-r--r-- | config/description.exs | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/config/description.exs b/config/description.exs index 9e8c114b5..3abcc6266 100644 --- a/config/description.exs +++ b/config/description.exs @@ -701,12 +701,10 @@ config :pleroma, :config_description, [ type: {:list, :string}, description: "MIME-type list of formats allowed to be posted (transformed into HTML)", suggestions: [ - [ - "text/plain", - "text/html", - "text/markdown", - "text/bbcode" - ] + "text/plain", + "text/html", + "text/markdown", + "text/bbcode" ] }, %{ @@ -1990,10 +1988,8 @@ config :pleroma, :config_description, [ type: {:keyword, :integer}, description: "Max retry attempts for failed jobs, per `Oban` queue", suggestions: [ - [ - federator_incoming: 5, - federator_outgoing: 5 - ] + federator_incoming: 5, + federator_outgoing: 5 ] } ] |