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

This commit is contained in:
Angelina Filippova 2020-07-09 01:33:23 +03:00
parent 9ad305209a
commit 33e6285636
1 changed files with 9 additions and 4 deletions

View File

@ -1791,15 +1791,20 @@
},
%{
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}
}
]
}
]
},