from django.utils.translation import gettext_lazy as _ from rest_framework import serializers from common.serializers.fields import EncryptedField __all__ = ['FeiShuSettingSerializer'] from .base import OrgListField class FeiShuSettingSerializer(serializers.Serializer): PREFIX_TITLE = _('FeiShu') AUTH_FEISHU = serializers.BooleanField(default=False, label=_('FeiShu')) FEISHU_APP_ID = serializers.CharField(max_length=256, required=True, label='App ID') FEISHU_APP_SECRET = EncryptedField(max_length=256, required=False, label='App Secret') FEISHU_RENAME_ATTRIBUTES = serializers.JSONField( required=False, label=_('User attribute'), help_text=_( 'User attribute mapping, where the `key` is the JumpServer user attribute name and the ' '`value` is the FeiShu service user attribute name' ) ) FEISHU_ORG_IDS = OrgListField()