Skip to content

Commit a2fdc84

Browse files
committed
fix: 누락된 필수 필드 추가
1 parent d37489b commit a2fdc84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/admin_api/serializers/event/presentation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class Meta:
7575
class RoomScheduleAdminSerializer(BaseAbstractSerializer, JsonSchemaSerializer, serializers.ModelSerializer):
7676
class Meta:
7777
model = RoomSchedule
78-
fields = ("room", "start_at", "end_at", "presentation")
78+
fields = ("id", "room", "start_at", "end_at", "presentation")
7979

8080
def validate(self, attrs: dict) -> dict:
8181
start_at = any_to_datetime(attrs.get("start_at", getattr(self.instance, "start_at", None)))

0 commit comments

Comments
 (0)