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.reputation.models import ReputationPolicy
|
|
|
|
|
|
|
|
|
|
|
|
class ReputationPolicySerializer(ModelSerializer):
|
|
|
|
"""Reputation Policy Serializer"""
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = ReputationPolicy
|
2019-12-31 11:51:16 +00:00
|
|
|
fields = GENERAL_SERIALIZER_FIELDS + ["check_ip", "check_username", "threshold"]
|
2019-10-28 16:40:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ReputationPolicyViewSet(ModelViewSet):
|
|
|
|
"""Source Viewset"""
|
|
|
|
|
|
|
|
queryset = ReputationPolicy.objects.all()
|
|
|
|
serializer_class = ReputationPolicySerializer
|