From 5b5b5c8909a724a2ce20e42a8f21a91051c78f4d Mon Sep 17 00:00:00 2001 From: ifoughali Date: Wed, 19 Nov 2025 20:18:59 +0100 Subject: [PATCH] Revert "Feat: set status as editable field" This reverts commit b4160ad59bdc1057b9761b7c5457afd9bcd754c3. --- netbox/core/models/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/core/models/data.py b/netbox/core/models/data.py index 2c4395504..6cfb1bf8d 100644 --- a/netbox/core/models/data.py +++ b/netbox/core/models/data.py @@ -53,7 +53,7 @@ class DataSource(JobsMixin, PrimaryModel): max_length=50, choices=DataSourceStatusChoices, default=DataSourceStatusChoices.NEW, - editable=True + editable=False ) enabled = models.BooleanField( verbose_name=_('enabled'),