Browse Source

Merge pull request #1399 from nikhen/i845

data.email should NOT be shorter than 8 characters #845
jc21 4 years ago
parent
commit
784516283f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      backend/schema/definitions.json

+ 1 - 1
backend/schema/definitions.json

@@ -153,7 +153,7 @@
       "example": "[email protected]",
       "format": "email",
       "type": "string",
-      "minLength": 8,
+      "minLength": 6,
       "maxLength": 100
     },
     "password": {