mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 05:25:40 +00:00
8 lines
195 B
Python
8 lines
195 B
Python
from rest_framework import serializers
|
|
from .models import ChangeLog
|
|
|
|
class ChangeLogSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = ChangeLog
|
|
fields = '__all__'
|