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