mirror of https://github.com/k3s-io/k3s
pull/8/head
parent
31420467ae
commit
5e84dfbbc5
|
@ -52,7 +52,14 @@ Request Information:
|
|||
|
||||
Request Headers:
|
||||
{% for i, key in ipairs(keys) do %}
|
||||
{{key}}={{headers[key]}}
|
||||
{% local val = headers[key] %}
|
||||
{% if type(val) == "table" then %}
|
||||
{% for i = 1,#val do %}
|
||||
{{key}}={{val[i]}}
|
||||
{% end %}
|
||||
{% else %}
|
||||
{{key}}={{val}}
|
||||
{% end %}
|
||||
{% end %}
|
||||
|
||||
Request Body:
|
||||
|
|
Loading…
Reference in New Issue