This commit is contained in:
luis cielak 2018-09-13 13:37:37 -04:00 committed by luisgov
parent 9308f0eb7b
commit 2307e41aac

View File

@ -16,6 +16,9 @@ class NewMemberForm(Form):
email = EmailField("Email Address", validators=[Required(), Email()]) email = EmailField("Email Address", validators=[Required(), Email()])
dod_id = StringField("DOD ID", validators=[Required(), Length(min=10), IsNumber()]) dod_id = StringField("DOD ID", validators=[Required(), Length(min=10), IsNumber()])
workspace_role = SelectField( workspace_role = SelectField(
"Workspace Role", choices=WORKSPACE_ROLES, validators=[Required()], default="", "Workspace Role",
description="The workspace role controls whether a member is permitted to organize a workspace into projects and environments, add members to this workspace, and view billing information." choices=WORKSPACE_ROLES,
validators=[Required()],
default="",
description="The workspace role controls whether a member is permitted to organize a workspace into projects and environments, add members to this workspace, and view billing information.",
) )