add form for editing workspace name

This commit is contained in:
dandds
2018-09-17 13:10:37 -04:00
parent 021871ec16
commit c3f89ba149
6 changed files with 73 additions and 10 deletions

View File

@@ -5,4 +5,4 @@ from .forms import ValidatedForm
class WorkspaceForm(ValidatedForm):
name = StringField("Workspace Name", validators=[Length(min=4, max=50)])
name = StringField("Workspace Name", validators=[Length(min=4, max=50, message="Workspace names must be at least 4 and not more than 50 characters")])