0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

🐛 Fixed validation error when adding tag from PSM

refs #10438

- Relaxed validation rules for tag.slug property to allow 'null' values
This commit is contained in:
Nazar Gargol 2019-02-14 10:04:02 +00:00
parent c2b3520652
commit fa42a71181

View file

@ -166,7 +166,7 @@
"maxLength": 191
},
"slug": {
"type": "string",
"type": ["string", "null"],
"maxLength": 191
}
},