mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-20 16:38:37 +01:00
Show arrays in the query string as "[type]" rather than "array"
Otherwise the question "array of what?" is raised.
This commit is contained in:
parent
d279fdafa6
commit
cbbdcbcf01
|
|
@ -502,6 +502,11 @@ class MatrixUnits(Units):
|
|||
# assign value expected for this param
|
||||
val_type = param.get("type") # integer/string
|
||||
|
||||
if val_type == "array":
|
||||
items = param.get("items")
|
||||
if items:
|
||||
val_type = "[%s]" % items.get("type")
|
||||
|
||||
if param.get("enum"):
|
||||
val_type = "enum"
|
||||
desc += (
|
||||
|
|
|
|||
Loading…
Reference in a new issue