11 lines
306 B
Python
11 lines
306 B
Python
# blog/serializers.py
|
|
|
|
from rest_framework import serializers
|
|
from .models import Post
|
|
|
|
class PostSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Post
|
|
fields = ['id', 'title', 'content', 'author_name', 'created_at']
|
|
read_only_fields = ['author_name', 'created_at']
|