registration: Fix string "true" in extension v2 schema

Extension tags required value was the string value "true",
but really should be the boolean value true.

Bug: T257898
Change-Id: I6372fc55b864e898268c6df3f7cdead03b37d53f
This commit is contained in:
kalle 2020-07-14 10:24:10 +02:00 committed by Legoktm
parent eedfbbdaaa
commit 3177547540

View file

@ -1181,7 +1181,7 @@
"name": {
"type": "string",
"description": "The name of the extension tag",
"required": "true"
"required": true
},
"handler": {
"description": "An object factory specification of a class extending Wikimedia\\Parsoid\\Ext\\ExtensionTagHandler"