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.
11 lines
454 B
11 lines
454 B
from rest_framework import serializers
|
|
|
|
from common.serializers.fields import EncryptedField
|
|
from ..const import ConfirmType, MFAType
|
|
|
|
|
|
class ConfirmSerializer(serializers.Serializer):
|
|
confirm_type = serializers.ChoiceField(required=True, allow_blank=True, choices=ConfirmType.choices)
|
|
mfa_type = serializers.ChoiceField(required=False, allow_blank=True, choices=MFAType.choices)
|
|
secret_key = EncryptedField(allow_blank=True, required=False)
|