Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

General Avail Redesign #374

Merged
merged 9 commits into from
Apr 19, 2024
2 changes: 1 addition & 1 deletion backend/src/appointment/database/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class Config:

class ScheduleBase(BaseModel):
active: bool | None = True
name: str
name: str = Field(min_length=1)
calendar_id: int
location_type: LocationType | None = LocationType.inperson
location_url: str | None = None
Expand Down
Loading