ungleich-otp/ungleichotp/otpauth/views.py

12 lines
281 B
Python

from django.shortcuts import render
from rest_framework import viewsets
from otpauth.serializer import VerifySerializer
# Create your views here.
class VerifyViewSet(viewsets.ModelViewSet):
serializer_class = VerifySerializer
def get_queryset(self):
return None