30 lines
		
	
	
		
			834 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			834 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Password Policy 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.password.models import PasswordPolicy
 | 
						|
 | 
						|
 | 
						|
class PasswordPolicySerializer(ModelSerializer):
 | 
						|
    """Password Policy Serializer"""
 | 
						|
 | 
						|
    class Meta:
 | 
						|
        model = PasswordPolicy
 | 
						|
        fields = GENERAL_SERIALIZER_FIELDS + [
 | 
						|
            "password_field",
 | 
						|
            "amount_uppercase",
 | 
						|
            "amount_lowercase",
 | 
						|
            "amount_symbols",
 | 
						|
            "length_min",
 | 
						|
            "symbol_charset",
 | 
						|
            "error_message",
 | 
						|
        ]
 | 
						|
 | 
						|
 | 
						|
class PasswordPolicyViewSet(ModelViewSet):
 | 
						|
    """Password Policy Viewset"""
 | 
						|
 | 
						|
    queryset = PasswordPolicy.objects.all()
 | 
						|
    serializer_class = PasswordPolicySerializer
 |