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
346 B
13 lines
346 B
6 years ago
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
from rest_framework import viewsets
|
||
|
|
||
|
from common.permissions import WithBootstrapToken
|
||
4 years ago
|
from .. import serializers
|
||
6 years ago
|
|
||
|
|
||
|
class ServiceAccountRegistrationViewSet(viewsets.ModelViewSet):
|
||
6 years ago
|
serializer_class = serializers.ServiceAccountSerializer
|
||
6 years ago
|
permission_classes = (WithBootstrapToken,)
|
||
|
http_method_names = ['post']
|