We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7c85dc commit b73fa60Copy full SHA for b73fa60
1 file changed
src/main/java/com/example/be/web/controller/OpenviduController.java
@@ -71,7 +71,7 @@ public ResponseEntity<String> receiveWebhook(@RequestHeader("Authorization") Str
71
Room newRoom = Room.builder()
72
.title(roomName)
73
.createDate(createAt)
74
- .participantCount(roomParticipantCount)
+ .participantCount(1)
75
.maxParticipants(10) // 기본값 설정
76
.build();
77
roomRepository.save(newRoom);
0 commit comments