mirror of https://github.com/jumpserver/jumpserver
21 lines
427 B
Python
21 lines
427 B
Python
|
# coding: utf-8
|
||
|
#
|
||
|
|
||
|
from orgs.mixins.api import OrgBulkModelViewSet
|
||
|
|
||
|
from .. import models
|
||
|
from .. import serializers
|
||
|
from ..hands import IsOrgAdminOrAppUser
|
||
|
|
||
|
__all__ = [
|
||
|
'K8sAppViewSet',
|
||
|
]
|
||
|
|
||
|
|
||
|
class K8sAppViewSet(OrgBulkModelViewSet):
|
||
|
model = models.K8sApp
|
||
|
filter_fields = ('name',)
|
||
|
search_fields = filter_fields
|
||
|
permission_classes = (IsOrgAdminOrAppUser,)
|
||
|
serializer_class = serializers.K8sAppSerializer
|