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.
19 lines
452 B
19 lines
452 B
# coding: utf-8 |
|
# |
|
|
|
from orgs.mixins import generics |
|
from ..hands import IsAppUser |
|
from .. import models |
|
from ..serializers import RemoteAppConnectionInfoSerializer |
|
from ..permissions import IsRemoteApp |
|
|
|
|
|
__all__ = [ |
|
'RemoteAppConnectionInfoApi', |
|
] |
|
|
|
|
|
class RemoteAppConnectionInfoApi(generics.RetrieveAPIView): |
|
model = models.Application |
|
permission_classes = (IsAppUser, IsRemoteApp) |
|
serializer_class = RemoteAppConnectionInfoSerializer
|
|
|