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.
25 lines
1004 B
25 lines
1004 B
from django.utils.translation import gettext_lazy as _
|
|
from rest_framework import serializers
|
|
|
|
from common.serializers.fields import EncryptedField
|
|
from .base import OrgListField
|
|
|
|
__all__ = ['SlackSettingSerializer']
|
|
|
|
|
|
class SlackSettingSerializer(serializers.Serializer):
|
|
PREFIX_TITLE = _('Slack')
|
|
|
|
AUTH_SLACK = serializers.BooleanField(default=False, label=_('Slack'))
|
|
SLACK_CLIENT_ID = serializers.CharField(max_length=256, required=True, label='Client ID')
|
|
SLACK_CLIENT_SECRET = EncryptedField(max_length=256, required=False, label='Client Secret')
|
|
SLACK_BOT_TOKEN = EncryptedField(max_length=256, required=False, label='Client bot Token')
|
|
SLACK_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 Slack service user attribute name'
|
|
)
|
|
)
|
|
SLACK_ORG_IDS = OrgListField()
|