mirror of
https://github.com/Rushilwiz/house-party.git
synced 2025-04-20 03:20:17 -04:00
7 lines
242 B
Python
7 lines
242 B
Python
from rest_framework import serializers
|
|
from .models import Room
|
|
|
|
class RoomSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Room
|
|
fields = ('id', 'code', 'host', 'guest_can_pause', 'votes_to_skip', 'created_at') |