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

Updated members schema validation for name

no issue

- Removed minimum length requirement for `name` as its possible to have empty name for a member
This commit is contained in:
Rish 2019-10-10 17:02:18 +05:30
parent 6b4e6fb400
commit 4f0ca2914f

View file

@ -11,7 +11,6 @@
"properties": { "properties": {
"name": { "name": {
"type": "string", "type": "string",
"minLength": 1,
"maxLength": 191, "maxLength": 191,
"pattern": "^([^,]|$)" "pattern": "^([^,]|$)"
}, },