mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
from rest_framework.viewsets import GenericViewSet, ModelViewSet, ReadOnlyModelViewSet, ViewSet
|
|
from rest_framework_bulk import BulkModelViewSet
|
|
|
|
from ..mixins.api import (
|
|
SerializerMixin, QuerySetMixin, ExtraFilterFieldsMixin, PaginatedResponseMixin,
|
|
RelationMixin, AllowBulkDestroyMixin, RenderToJsonMixin,
|
|
)
|
|
|
|
|
|
class CommonMixin(SerializerMixin,
|
|
QuerySetMixin,
|
|
ExtraFilterFieldsMixin,
|
|
PaginatedResponseMixin,
|
|
RenderToJsonMixin):
|
|
pass
|
|
|
|
|
|
class JMSGenericViewSet(CommonMixin, GenericViewSet):
|
|
pass
|
|
|
|
|
|
class JMSViewSet(CommonMixin, ViewSet):
|
|
pass
|
|
|
|
|
|
class JMSModelViewSet(CommonMixin, ModelViewSet):
|
|
pass
|
|
|
|
|
|
class JMSReadOnlyModelViewSet(CommonMixin, ReadOnlyModelViewSet):
|
|
pass
|
|
|
|
|
|
class JMSBulkModelViewSet(CommonMixin, AllowBulkDestroyMixin, BulkModelViewSet):
|
|
pass
|
|
|
|
|
|
class JMSBulkRelationModelViewSet(CommonMixin,
|
|
RelationMixin,
|
|
AllowBulkDestroyMixin,
|
|
BulkModelViewSet):
|
|
pass
|