Created
August 19, 2019 14:24
-
-
Save parvbhullar/ee448dee105e4eaad4bd29c8796a8cca to your computer and use it in GitHub Desktop.
Django ToDo App - Views.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.shortcuts import render | |
from rest_framework import viewsets # add this | |
from todo.serializers import TodoSerializer # add this | |
from todo.models import ToDo # add this | |
class TodoView(viewsets.ModelViewSet): # add this | |
serializer_class = TodoSerializer # add this | |
queryset = ToDo.objects.all() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment