Skip to content

Commit

Permalink
refactor: 웹소켓 테스트를 위한 Thymeleaf 파일 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
park0jae committed Feb 21, 2024
1 parent 5738c54 commit dd4b518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ <h2>Game Room WebSocket Test</h2>
'Authorization': 'Bearer ' + accessToken,
'RoomId': roomId,
};
stompClient.send("/to/game-room/" + roomId + "/kick" + kickedId, connectHeaders, JSON.stringify({}));
stompClient.send("/to/game-room/" + roomId + "/kick/" + kickedId, connectHeaders, JSON.stringify({}));
}
</script>
</body>
Expand Down

0 comments on commit dd4b518

Please sign in to comment.