Advance don't merge

This commit is contained in:
2023-12-12 10:05:13 +01:00
parent bc892bc157
commit 0e3b19fcd9
8 changed files with 74 additions and 7 deletions

8
chat/serializers.py Normal file
View File

@ -0,0 +1,8 @@
from rest_framework import serializers
from .models import ChannelModel
class ChannelSerializer(serializers.ModelSerializer):
class Meta:
model = ChannelModel
fields = []