mirror of https://github.com/jumpserver/jumpserver
13 lines
364 B
Python
13 lines
364 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
from rest_framework import viewsets
|
||
|
|
||
|
from common.permissions import WithBootstrapToken
|
||
|
from .. import serializers_v2 as serializers
|
||
|
|
||
|
|
||
|
class ServiceAccountRegistrationViewSet(viewsets.ModelViewSet):
|
||
|
serializer_class = serializers.ServiceAccountSerializer
|
||
|
permission_classes = (WithBootstrapToken,)
|
||
|
http_method_names = ['post']
|