|
|
|
@ -5,7 +5,6 @@ from django.shortcuts import get_object_or_404
|
|
|
|
|
from rest_framework.views import APIView, Response
|
|
|
|
|
from rest_framework.generics import ListAPIView, get_object_or_404, RetrieveUpdateAPIView
|
|
|
|
|
from rest_framework import viewsets
|
|
|
|
|
from rest_framework.pagination import LimitOffsetPagination
|
|
|
|
|
|
|
|
|
|
from common.utils import set_or_append_attr_bulk, get_object_or_none
|
|
|
|
|
from users.permissions import IsValidUser, IsSuperUser, IsSuperUserOrAppUser
|
|
|
|
@ -23,7 +22,6 @@ class AssetPermissionViewSet(viewsets.ModelViewSet):
|
|
|
|
|
queryset = AssetPermission.objects.all()
|
|
|
|
|
serializer_class = serializers.AssetPermissionCreateUpdateSerializer
|
|
|
|
|
permission_classes = (IsSuperUser,)
|
|
|
|
|
pagination_class = LimitOffsetPagination
|
|
|
|
|
|
|
|
|
|
def get_serializer_class(self):
|
|
|
|
|
if self.action in ("list", 'retrieve'):
|
|
|
|
|