diff options
Diffstat (limited to 'server/initializers/constants.ts')
-rw-r--r-- | server/initializers/constants.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index f1a734f48..6971ab775 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -302,7 +302,7 @@ const CONFIG = { | |||
302 | 302 | ||
303 | let CONSTRAINTS_FIELDS = { | 303 | let CONSTRAINTS_FIELDS = { |
304 | USERS: { | 304 | USERS: { |
305 | NAME: { min: 1, max: 50 }, // Length | 305 | NAME: { min: 1, max: 120 }, // Length |
306 | DESCRIPTION: { min: 3, max: 1000 }, // Length | 306 | DESCRIPTION: { min: 3, max: 1000 }, // Length |
307 | USERNAME: { min: 1, max: 50 }, // Length | 307 | USERNAME: { min: 1, max: 50 }, // Length |
308 | PASSWORD: { min: 6, max: 255 }, // Length | 308 | PASSWORD: { min: 6, max: 255 }, // Length |
@@ -318,7 +318,7 @@ let CONSTRAINTS_FIELDS = { | |||
318 | REASON: { min: 2, max: 300 } // Length | 318 | REASON: { min: 2, max: 300 } // Length |
319 | }, | 319 | }, |
320 | VIDEO_CHANNELS: { | 320 | VIDEO_CHANNELS: { |
321 | NAME: { min: 1, max: 50 }, // Length | 321 | NAME: { min: 1, max: 120 }, // Length |
322 | DESCRIPTION: { min: 3, max: 1000 }, // Length | 322 | DESCRIPTION: { min: 3, max: 1000 }, // Length |
323 | SUPPORT: { min: 3, max: 1000 }, // Length | 323 | SUPPORT: { min: 3, max: 1000 }, // Length |
324 | URL: { min: 3, max: 2000 } // Length | 324 | URL: { min: 3, max: 2000 } // Length |