workspace and request names can be 100 chars long

This commit is contained in:
dandds 2018-09-19 11:38:10 -04:00
parent f8152f61e7
commit 8ce667cea2
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ class WorkspaceForm(ValidatedForm):
validators=[
Length(
min=4,
max=50,
max=100,
message="Workspace names must be at least 4 and not more than 50 characters",
)
],

View File

@ -81,7 +81,7 @@ export default {
},
workspaceName: {
mask: false,
match: /^.{4,50}$/,
match: /^.{4,100}$/,
unmask: [],
validationError: 'Workspace and request names must be at least 4 and not more than 50 characters'
},