Skip to content

Commit

Permalink
make profile pages truly optional
Browse files Browse the repository at this point in the history
  • Loading branch information
devksingh4 committed Jul 14, 2024
1 parent 5e85a34 commit 337cb47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/util/structs.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class StudentProfileDetails(BaseModel):
username: str
name: str
email: EmailStr
linkedin: Optional[HttpUrl] = ""
github: Optional[HttpUrl] = ""
website: Optional[HttpUrl] = ""
linkedin: Optional[HttpUrl] = None
github: Optional[HttpUrl] = None
website: Optional[HttpUrl] = None
degrees: List[DegreeListing]
bio: str
skills: List[str]
Expand Down

0 comments on commit 337cb47

Please sign in to comment.