jumpserver/apps/settings/serializers/auth/sso.py

20 lines
628 B
Python
Raw Normal View History

from django.utils.translation import ugettext_lazy as _
from rest_framework import serializers
__all__ = [
'SSOSettingSerializer',
]
class SSOSettingSerializer(serializers.Serializer):
PREFIX_TITLE = '%s-%s' % (_('Authentication'), _('SSO'))
AUTH_SSO = serializers.BooleanField(
required=False, label=_('Enable SSO auth'),
help_text=_("Other service can using SSO token login to JumpServer without password")
)
AUTH_SSO_AUTHKEY_TTL = serializers.IntegerField(
2021-09-14 11:30:03 +00:00
required=False, label=_('SSO auth key TTL'), help_text=_("Unit: second"),
min_value=60, max_value=60 * 30
)