We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c313a9 commit 4275ea9Copy full SHA for 4275ea9
src/main/java/cmf/commitField/domain/chat/chatRoom/controller/ChatRoomController.java
@@ -17,6 +17,7 @@
17
public class ChatRoomController {
18
private final ChatRoomService chatRoomService;
19
20
+ //채팅방 생성
21
@PostMapping("/room")
22
public GlobalResponse<Object> createRoom(
23
@RequestBody @Valid ChatRoomRequest chatRoomRequest) {
@@ -32,6 +33,7 @@ public GlobalResponse<Object> createRoom(
32
33
}
34
35
36
+ //채팅방 입장
37
@PostMapping("/room/join/{roomId}")
38
public GlobalResponse<Object> joinRoom(@PathVariable Long roomId) {
39
Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
0 commit comments