Skip to content

Instantly share code, notes, and snippets.

@codetombomb
Created September 29, 2020 23:11
Show Gist options
  • Save codetombomb/fe0fa32f36e788de033a1485c148e06c to your computer and use it in GitHub Desktop.
Save codetombomb/fe0fa32f36e788de033a1485c148e06c to your computer and use it in GitHub Desktop.
Editing the app views to format JSON output
from rest_framework import viewsets
from .serializers import ProjectsSerializer
from .models import Projects
class ProjectsViewSet(viewsets.ModelViewSet):
queryset = Projects.objects.all()
serializer_class = ProjectsSerializer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment