From 9540667940cbf47456282cbb2ddb7b16f46b255c Mon Sep 17 00:00:00 2001 From: "IGNY8 VPS (Salman)" Date: Thu, 25 Dec 2025 07:33:50 +0000 Subject: [PATCH] Fix: Remove unused IsSystemAccountOrDeveloper import This permission class doesn't exist and isn't used in the integration_views. Removing it to fix ImportError preventing backend startup. --- backend/igny8_core/modules/system/integration_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/igny8_core/modules/system/integration_views.py b/backend/igny8_core/modules/system/integration_views.py index 37bbd09b..931f6c92 100644 --- a/backend/igny8_core/modules/system/integration_views.py +++ b/backend/igny8_core/modules/system/integration_views.py @@ -10,7 +10,7 @@ from drf_spectacular.utils import extend_schema, extend_schema_view from igny8_core.api.base import AccountModelViewSet from igny8_core.api.response import success_response, error_response from igny8_core.api.throttles import DebugScopedRateThrottle -from igny8_core.api.permissions import IsAuthenticatedAndActive, HasTenantAccess, IsSystemAccountOrDeveloper +from igny8_core.api.permissions import IsAuthenticatedAndActive, HasTenantAccess from django.conf import settings logger = logging.getLogger(__name__)