This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-07-01 19:18:05 +00:00
|
|
|
"""Password Policy API Views"""
|
2019-10-28 16:40:57 +00:00
|
|
|
from rest_framework.serializers import ModelSerializer
|
|
|
|
from rest_framework.viewsets import ModelViewSet
|
|
|
|
|
|
|
|
from passbook.policies.forms import GENERAL_SERIALIZER_FIELDS
|
|
|
|
from passbook.policies.password.models import PasswordPolicy
|
|
|
|
|
|
|
|
|
|
|
|
class PasswordPolicySerializer(ModelSerializer):
|
|
|
|
"""Password Policy Serializer"""
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = PasswordPolicy
|
2019-12-31 11:51:16 +00:00
|
|
|
fields = GENERAL_SERIALIZER_FIELDS + [
|
2020-07-10 18:43:35 +00:00
|
|
|
"password_field",
|
2019-12-31 11:51:16 +00:00
|
|
|
"amount_uppercase",
|
|
|
|
"amount_lowercase",
|
|
|
|
"amount_symbols",
|
|
|
|
"length_min",
|
|
|
|
"symbol_charset",
|
|
|
|
"error_message",
|
|
|
|
]
|
2019-10-28 16:40:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PasswordPolicyViewSet(ModelViewSet):
|
2020-07-01 19:18:05 +00:00
|
|
|
"""Password Policy Viewset"""
|
2019-10-28 16:40:57 +00:00
|
|
|
|
|
|
|
queryset = PasswordPolicy.objects.all()
|
|
|
|
serializer_class = PasswordPolicySerializer
|