mirror of https://github.com/jumpserver/jumpserver
24 lines
695 B
Python
24 lines
695 B
Python
from django_filters import rest_framework as drf_filters
|
|
|
|
from common.api import JMSBulkModelViewSet
|
|
from .common import ACLUserFilterMixin
|
|
from .. import serializers
|
|
from ..models import ConnectMethodACL
|
|
|
|
__all__ = ['ConnectMethodACLViewSet']
|
|
|
|
|
|
class ConnectMethodFilter(ACLUserFilterMixin):
|
|
methods = drf_filters.CharFilter(field_name="methods__contains", lookup_expr='exact')
|
|
|
|
class Meta:
|
|
model = ConnectMethodACL
|
|
fields = ['name', ]
|
|
|
|
|
|
class ConnectMethodACLViewSet(JMSBulkModelViewSet):
|
|
queryset = ConnectMethodACL.objects.all()
|
|
filterset_class = ConnectMethodFilter
|
|
search_fields = ('name',)
|
|
serializer_class = serializers.ConnectMethodACLSerializer
|