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.
28 lines
737 B
28 lines
737 B
# coding: utf-8
|
|
#
|
|
|
|
from orgs.mixins.api import OrgBulkModelViewSet
|
|
from orgs.mixins import generics
|
|
from ..hands import IsOrgAdmin, IsAppUser
|
|
from ..models import RemoteApp
|
|
from ..serializers import RemoteAppSerializer, RemoteAppConnectionInfoSerializer
|
|
|
|
|
|
__all__ = [
|
|
'RemoteAppViewSet', 'RemoteAppConnectionInfoApi',
|
|
]
|
|
|
|
|
|
class RemoteAppViewSet(OrgBulkModelViewSet):
|
|
model = RemoteApp
|
|
filter_fields = ('name', 'type', 'comment')
|
|
search_fields = filter_fields
|
|
permission_classes = (IsOrgAdmin,)
|
|
serializer_class = RemoteAppSerializer
|
|
|
|
|
|
class RemoteAppConnectionInfoApi(generics.RetrieveAPIView):
|
|
model = RemoteApp
|
|
permission_classes = (IsAppUser, )
|
|
serializer_class = RemoteAppConnectionInfoSerializer
|