From dd3811243cfb7935c5c56f766f99c2dc716c5a38 Mon Sep 17 00:00:00 2001 From: Brian Greunke Date: Sun, 9 Nov 2025 09:31:36 -0600 Subject: [PATCH] feat(api): make Workspace created_by optional --- dreadnode/api/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dreadnode/api/models.py b/dreadnode/api/models.py index 455cdfc..36eef3e 100644 --- a/dreadnode/api/models.py +++ b/dreadnode/api/models.py @@ -452,7 +452,7 @@ class Workspace(BaseModel): """URL-friendly slug for the workspace.""" description: str | None """Description of the workspace.""" - created_by: UUID + created_by: UUID | None = None """Unique identifier for the user who created the workspace.""" org_id: UUID """Unique identifier for the organization the workspace belongs to."""