fix(chat-room): 메시지 전송 API URL 수정
기존
/api/chat/room/{roomId}/messages
변경
/api/chat/room/{roomId}/send
			
			
This commit is contained in:
		@@ -35,7 +35,7 @@ interface TalkApi {
 | 
			
		||||
    ): Single<ApiResponse<ChatRoomEnterResponse>>
 | 
			
		||||
 | 
			
		||||
    // 메시지 전송 API
 | 
			
		||||
    @POST("/api/chat/room/{roomId}/messages")
 | 
			
		||||
    @POST("/api/chat/room/{roomId}/send")
 | 
			
		||||
    fun sendMessage(
 | 
			
		||||
        @Header("Authorization") authHeader: String,
 | 
			
		||||
        @Path("roomId") roomId: Long,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user