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.
This commit is contained in:
IGNY8 VPS (Salman)
2025-12-25 07:33:50 +00:00
parent cfc3bac5be
commit 9540667940

View File

@@ -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__)