From d10b1a64dd61ba2536da7fa057fc10f5b6bcfa7a Mon Sep 17 00:00:00 2001 From: Brian Greunke Date: Fri, 14 Nov 2025 09:47:20 -0600 Subject: [PATCH] refactor(organization): rename slug field to identifier --- dreadnode/api/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dreadnode/api/models.py b/dreadnode/api/models.py index 36eef3e8..391a90fb 100644 --- a/dreadnode/api/models.py +++ b/dreadnode/api/models.py @@ -498,8 +498,8 @@ class Organization(BaseModel): """Unique identifier for the organization.""" name: str """Name of the organization.""" - slug: str - """URL-friendly slug for the organization.""" + identifier: str + """URL-friendly identifer for the organization.""" description: str | None """Description of the organization.""" is_active: bool