You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvapi/election/views.py

9 lines
252 B

from django.shortcuts import render
from rest_framework.generics import CreateAPIView
from election.serializers import ElectionSerializer
# Create your views here.
class ElectionCreateAPIView(CreateAPIView):
serializer_class = ElectionSerializer