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