Skip to content

Commit 09220ba

Browse files
committed
feat: 채팅방 생성 mock api 응답 업데이트
1 parent 6aaf17a commit 09220ba

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/app/api/v1/chat/room/route.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@ import { NextResponse } from 'next/server';
44
export async function POST() {
55
const mockData: CreateChatRoomResponse = {
66
roomId: 1,
7-
message: {
8-
messageId: 1,
9-
type: 'SYSTEM_NORMAL',
10-
sender: 'SYSTEM',
11-
answer: ['안녕이다냥?'],
12-
},
137
};
148

159
return NextResponse.json({ data: mockData });

0 commit comments

Comments
 (0)