Skip to content

Commit

Permalink
Fix Organization model inheritance and workspace property
Browse files Browse the repository at this point in the history
Co-Authored-By: Philip Dodds <[email protected]>
  • Loading branch information
devin-ai-integration[bot] and Philip Dodds committed Feb 10, 2025
1 parent c60af55 commit 284f132
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kodexa/model/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -3060,7 +3060,8 @@ class Workspace(BaseModel):
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
updated_on: Optional[StandardDateTime] = Field(None, alias="updatedOn")
project: Optional[Project] = None
name: Optional[str] = None
name: str
slug: str = Field(pattern=r"^[a-zA-Z0-9\-_]{0,100}$")
description: Optional[str] = None
workspace_storage: Optional[WorkspaceStorage] = Field(
None, alias="workspaceStorage"
Expand Down

0 comments on commit 284f132

Please sign in to comment.