make res_headers a TypeTable
... rather than a list of rows
This commit is contained in:
parent
96650e2824
commit
93ff0713cb
2 changed files with 6 additions and 7 deletions
|
@ -27,10 +27,10 @@ Request format:
|
|||
`No parameters`
|
||||
{% endif %}
|
||||
|
||||
{% if endpoint.res_headers|length > 0 -%}
|
||||
{% if endpoint.res_headers is not none -%}
|
||||
Response headers:
|
||||
|
||||
{{ tables.paramtable(endpoint.res_headers) }}
|
||||
{{ tables.paramtable(endpoint.res_headers.rows) }}
|
||||
{% endif -%}
|
||||
|
||||
{% if endpoint.res_tables|length > 0 -%}
|
||||
|
|
|
@ -443,7 +443,7 @@ class MatrixUnits(Units):
|
|||
"rate_limited": 429 in endpoint_swagger.get("responses", {}),
|
||||
"req_param_by_loc": {},
|
||||
"req_body_tables": [],
|
||||
"res_headers": [],
|
||||
"res_headers": None,
|
||||
"res_tables": [],
|
||||
"responses": [],
|
||||
"example": {
|
||||
|
@ -521,10 +521,9 @@ class MatrixUnits(Units):
|
|||
good_response["schema"]
|
||||
)
|
||||
if "headers" in good_response:
|
||||
headers = []
|
||||
for (header_name, header) in good_response[
|
||||
"headers"].iteritems():
|
||||
headers.append(
|
||||
headers = TypeTable()
|
||||
for (header_name, header) in good_response["headers"].iteritems():
|
||||
headers.add_row(
|
||||
TypeTableRow(key=header_name, typ=header["type"],
|
||||
desc=header["description"]),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue