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.
2019-10-28 16:40:57 +00:00
|
|
|
"""Source API Views"""
|
|
|
|
from rest_framework.serializers import ModelSerializer
|
|
|
|
from rest_framework.viewsets import ModelViewSet
|
|
|
|
|
|
|
|
from passbook.policies.forms import GENERAL_SERIALIZER_FIELDS
|
|
|
|
from passbook.policies.hibp.models import HaveIBeenPwendPolicy
|
|
|
|
|
|
|
|
|
|
|
|
class HaveIBeenPwendPolicySerializer(ModelSerializer):
|
|
|
|
"""Have I Been Pwned Policy Serializer"""
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = HaveIBeenPwendPolicy
|
2020-07-10 18:57:15 +00:00
|
|
|
fields = GENERAL_SERIALIZER_FIELDS + ["password_field", "allowed_count"]
|
2019-10-28 16:40:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
class HaveIBeenPwendPolicyViewSet(ModelViewSet):
|
|
|
|
"""Source Viewset"""
|
|
|
|
|
|
|
|
queryset = HaveIBeenPwendPolicy.objects.all()
|
|
|
|
serializer_class = HaveIBeenPwendPolicySerializer
|