Skip to content

Commit

Permalink
fix: #1593 adjust application name's max length (#1597)
Browse files Browse the repository at this point in the history
  • Loading branch information
craigyu authored Sep 17, 2024
1 parent dc0d309 commit 5e25de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/backend/api/app/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ class IdimProxyBceidInfo(BaseModel):
class GCNotifyGrantAccessEmailParam(BaseModel):
first_name: Optional[Annotated[str, StringConstraints(max_length=50)]] = None
last_name: Optional[Annotated[str, StringConstraints(max_length=50)]] = None
application_name: Annotated[str, StringConstraints(max_length=35)]
application_name: Annotated[str, StringConstraints(max_length=100)]
role_list_string: Annotated[str, StringConstraints(max_length=500)]
application_team_contact_email: Optional[EmailStr] = None
send_to_email: EmailStr
Expand Down

0 comments on commit 5e25de6

Please sign in to comment.