Tracking PR for registration rewrite #5
No reviewers
Labels
No labels
blocked
bug
dependencies
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: ACM/hack-wpi-python#5
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "rewrite"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Roadmap:
@ -0,0 +3,4 @@
from wtforms.validators import DataRequired
class RegisterForm(FlaskForm):
email = StringField("Email", validators=[DataRequired()])
This could probably get turned into an
EmailField
if we cared enough@ -0,0 +19,4 @@
checked_in = Column(Boolean, nullable=False, default=False)
school = Column(String, nullable=True)
phone = Column(String, nullable=True)
gender = Column(String, nullable=True)
@willhockey20 is this something that actually needs to be stored? I only included it bc it was in the original registration system.
@ -0,0 +19,4 @@
checked_in = Column(Boolean, nullable=False, default=False)
school = Column(String, nullable=True)
phone = Column(String, nullable=True)
gender = Column(String, nullable=True)
The data was required by mlh, still could be nice to have so I'd keep it