mirror of
https://github.com/lemeow125/Django-NotesApp.git
synced 2024-11-17 06:29:25 +08:00
8 lines
233 B
Python
8 lines
233 B
Python
from rest_framework import serializers
|
|
from .models import Note
|
|
|
|
|
|
class NoteSerializer(serializers.HyperlinkedModelSerializer):
|
|
class Meta:
|
|
model = Note
|
|
fields = ('id', 'title', 'content', 'date_created')
|