1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-19 12:59:36 +02:00

feat: Add links functionality to NoteModal component

This commit is contained in:
Sean Morley 2024-08-04 12:45:37 -04:00
parent 89bf310340
commit 0c3664acf3
3 changed files with 64 additions and 1 deletions

View file

@ -62,7 +62,7 @@ class NoteSerializer(serializers.ModelSerializer):
class Meta:
model = Note
fields = [
'id', 'user_id', 'name', 'content', 'date',
'id', 'user_id', 'name', 'content', 'date', 'links',
'is_public', 'collection', 'created_at', 'updated_at'
]
read_only_fields = ['id', 'created_at', 'updated_at']