feat: add user management viewset and sync module to API routes

This commit is contained in:
2026-04-04 17:44:05 -03:00
parent 645a5b4093
commit 6c4e95e579
13 changed files with 328 additions and 2 deletions

7
sync/serializers.py Normal file
View File

@@ -0,0 +1,7 @@
from rest_framework import serializers
from .models import ChangeLog
class ChangeLogSerializer(serializers.ModelSerializer):
class Meta:
model = ChangeLog
fields = '__all__'