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.
13 lines
364 B
13 lines
364 B
# -*- 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']
|