Browse Source

Update types for :headers and :options settings in MediaProxy Invalidation group

chores/our-libs-hex-releases
Angelina Filippova 4 years ago
parent
commit
33e6285636
1 changed files with 9 additions and 4 deletions
  1. +9
    -4
      config/description.exs

+ 9
- 4
config/description.exs View File

@@ -1791,15 +1791,20 @@ config :pleroma, :config_description, [
},
%{
key: :headers,
type: {:list, :tuple},
description: "HTTP headers of request.",
type: {:keyword, :string},
description: "HTTP headers of request",
suggestions: [{"x-refresh", 1}]
},
%{
key: :options,
type: :keyword,
description: "Request options.",
suggestions: [params: %{ts: "xxx"}]
description: "Request options",
children: [
%{
key: :params,
type: {:keyword, :string}
}
]
}
]
},


Loading…
Cancel
Save