route, form, and domain methods for updating workspace name
This commit is contained in:
8
atst/forms/workspace.py
Normal file
8
atst/forms/workspace.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from wtforms.fields import StringField
|
||||
from wtforms.validators import Length
|
||||
|
||||
from .forms import ValidatedForm
|
||||
|
||||
|
||||
class WorkspaceForm(ValidatedForm):
|
||||
name = StringField("Workspace Name", validators=[Length(min=4, max=50)])
|
Reference in New Issue
Block a user