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