11 lines
253 B
Python
11 lines
253 B
Python
from rest_framework import generics
|
|
|
|
from notes.serializers import NoteSerializer
|
|
|
|
|
|
class NoteListView(generics.ListCreateAPIView):
|
|
serializer_class = NoteSerializer
|
|
|
|
def get_queryset(self):
|
|
return self.request.user.alive_received_notes
|