fixes of broken fucntions

This commit is contained in:
Desktop
2025-11-16 04:56:48 +05:00
parent 5eb2464d2d
commit 5908115686
8 changed files with 141 additions and 46 deletions

View File

@@ -10,6 +10,7 @@ from django.db import transaction
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, IsAdminOrOwner
from django.conf import settings
logger = logging.getLogger(__name__)
@@ -21,7 +22,7 @@ class IntegrationSettingsViewSet(viewsets.ViewSet):
Following reference plugin pattern: WordPress uses update_option() for igny8_api_settings
We store in IntegrationSettings model with account isolation
"""
permission_classes = [] # Allow any for now
permission_classes = [IsAuthenticatedAndActive, IsAdminOrOwner]
throttle_scope = 'system_admin'
throttle_classes = [DebugScopedRateThrottle]

View File

@@ -14,7 +14,7 @@ from django.utils import timezone
from django_filters.rest_framework import DjangoFilterBackend
from igny8_core.api.base import AccountModelViewSet
from igny8_core.api.response import success_response, error_response
from igny8_core.api.permissions import IsEditorOrAbove
from igny8_core.api.permissions import IsEditorOrAbove, IsAuthenticatedAndActive, IsViewerOrAbove
from igny8_core.api.throttles import DebugScopedRateThrottle
from igny8_core.api.pagination import CustomPageNumberPagination
from .models import AIPrompt, AuthorProfile, Strategy
@@ -199,6 +199,7 @@ class AuthorProfileViewSet(AccountModelViewSet):
"""
queryset = AuthorProfile.objects.all()
serializer_class = AuthorProfileSerializer
permission_classes = [IsAuthenticatedAndActive, IsViewerOrAbove]
throttle_scope = 'system'
throttle_classes = [DebugScopedRateThrottle]
@@ -216,6 +217,7 @@ class StrategyViewSet(AccountModelViewSet):
"""
queryset = Strategy.objects.all()
serializer_class = StrategySerializer
permission_classes = [IsAuthenticatedAndActive, IsViewerOrAbove]
throttle_scope = 'system'
throttle_classes = [DebugScopedRateThrottle]