mirror of
https://github.com/lemeow125/Django-NotesApp.git
synced 2024-11-17 06:29:25 +08:00
10 lines
287 B
Python
10 lines
287 B
Python
|
from django.shortcuts import render
|
||
|
from rest_framework import viewsets
|
||
|
from .serializers import NoteSerializer
|
||
|
from .models import Note
|
||
|
|
||
|
|
||
|
class NoteViewSet(viewsets.ModelViewSet):
|
||
|
queryset = Note.objects.all().order_by('date_created')
|
||
|
serializer_class = NoteSerializer
|