Skip to content

Commit 8b0c92f

Browse files
authored
feat(api): make Workspace created_by optional (#216)
1 parent 6ec0902 commit 8b0c92f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dreadnode/api/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ class Workspace(BaseModel):
452452
"""URL-friendly slug for the workspace."""
453453
description: str | None
454454
"""Description of the workspace."""
455-
created_by: UUID
455+
created_by: UUID | None = None
456456
"""Unique identifier for the user who created the workspace."""
457457
org_id: UUID
458458
"""Unique identifier for the organization the workspace belongs to."""

0 commit comments

Comments
 (0)