We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40ba155 commit 234a8c7Copy full SHA for 234a8c7
tcsocket/app/validation.py
@@ -39,7 +39,7 @@ class SortOn(str, Enum):
39
40
41
class CompanyCreateModal(BaseModel):
42
- name: constr(min_length=3, max_length=63)
+ name: constr(min_length=3, max_length=255)
43
domains: Optional[List[constr(max_length=255)]] = []
44
name_display: NameOptions = NameOptions.first_name_initial
45
public_key: constr(min_length=18, max_length=20) = None
@@ -55,7 +55,7 @@ def set_private_key(cls, v):
55
56
57
class CompanyUpdateModel(BaseModel):
58
- name: constr(min_length=3, max_length=63) = None
+ name: constr(min_length=3, max_length=255) = None
59
60
private_key: constr(min_length=20, max_length=50) = None
61
0 commit comments