Skip to content

Commit 5579c37

Browse files
authored
reduce name org name length in onboard api (#358)
1 parent 048e26e commit 5579c37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/app/models/onboarding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class OnboardingRequest(SQLModel):
2424

2525
organization_name: str = Field(
2626
description="Name of the organization to be created or linked",
27-
min_length=3,
27+
min_length=1,
2828
max_length=100,
2929
)
3030
project_name: str = Field(

0 commit comments

Comments
 (0)