mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-05 06:36:51 +00:00
14 lines
371 B
Python
14 lines
371 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
from common.api import GenericViewSet
|
|
from rest_framework.mixins import CreateModelMixin
|
|
from common.permissions import IsValidUser
|
|
from ..serializers import MyAssetSerializer
|
|
|
|
__all__ = ['MyAssetViewSet']
|
|
|
|
|
|
class MyAssetViewSet(CreateModelMixin, GenericViewSet):
|
|
serializer_class = MyAssetSerializer
|
|
permission_classes = (IsValidUser,)
|