test #235

Merged
klaus merged 8 commits from test into main 2024-11-11 15:34:36 +00:00
1 changed files with 0 additions and 1 deletions
Showing only changes of commit 82b07897f8 - Show all commits

View File

@ -290,7 +290,6 @@ class LiveRoomController(
@AuthenticationPrincipal(expression = "#this == 'anonymousUser' ? null : member") member: Member? @AuthenticationPrincipal(expression = "#this == 'anonymousUser' ? null : member") member: Member?
) = run { ) = run {
if (member == null) throw SodaException("로그인 정보를 확인해주세요.") if (member == null) throw SodaException("로그인 정보를 확인해주세요.")
ApiResponse.ok(service.getHeartList(roomId)) ApiResponse.ok(service.getHeartList(roomId))
} }
} }