Skip to content

Commit

Permalink
Updated questions fields
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavberi committed Apr 4, 2024
1 parent 8be322f commit 775c3f7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions models.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class Team(StrEnum):
Design = auto()
Finance = auto()
Logistics = auto()
Stratetgy = auto()
Stats = auto()


class CCRecruitment(BaseModel):
Expand All @@ -83,11 +83,14 @@ class CCRecruitment(BaseModel):
email: EmailStr = Field(...)

teams: List[Team] = []
design_experience: str|None = None
design_experience: str | None = None

why_this_position: str = Field()
why_cc: str = Field()

ideas: str = Field()
other_bodies: str = Field()
good_fit: str = Field()

sent_time: datetime = Field(default_factory=datetime.utcnow, frozen=True)

# TODO[pydantic]: The following keys were removed: `json_encoders`.
Expand Down

0 comments on commit 775c3f7

Please sign in to comment.