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.
authentik/passbook/factors/captcha/api.py

22 lines
582 B
Python
Raw Normal View History

2019-10-28 16:55:36 +00:00
"""CaptchaFactor API Views"""
from rest_framework.serializers import ModelSerializer
from rest_framework.viewsets import ModelViewSet
from passbook.factors.captcha.models import CaptchaFactor
class CaptchaFactorSerializer(ModelSerializer):
"""CaptchaFactor Serializer"""
class Meta:
model = CaptchaFactor
2019-12-31 11:51:16 +00:00
fields = ["pk", "name", "slug", "order", "enabled", "public_key", "private_key"]
2019-10-28 16:55:36 +00:00
class CaptchaFactorViewSet(ModelViewSet):
"""CaptchaFactor Viewset"""
queryset = CaptchaFactor.objects.all()
serializer_class = CaptchaFactorSerializer