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, key: :headers,
type: {:list, :tuple}, type: {:keyword, :string},
description: "HTTP headers of request.", description: "HTTP headers of request",
suggestions: [{"x-refresh", 1}] suggestions: [{"x-refresh", 1}]
}, },
%{ %{
key: :options, key: :options,
type: :keyword, type: :keyword,
description: "Request options.", description: "Request options",
suggestions: [params: %{ts: "xxx"}] children: [
%{
key: :params,
type: {:keyword, :string}
}
]
} }
] ]
}, },