Allow templates in ResourceModules to be array in extension registration

Flow doesent do this for example

"example.template": "example.handlebars"

it does

"example.handlebars" so lets make it allow arrays.

Caught from
https://integration.wikimedia.org/ci/job/mwext-Flow-testextension-php55/267/console

Change-Id: Ie8a45a00168349a9ee303e272ba82cb2fd225744
This commit is contained in:
Paladox 2016-03-28 10:57:31 +01:00
parent 6a5761e08c
commit d79dcfdea9

View file

@ -422,7 +422,7 @@
]
},
"templates": {
"type": "object",
"type": ["object", "array"],
"description": "Templates to be loaded for client-side usage"
},
"targets": {