https://github.com/mini-project-evey-team/four-cuts-frontend
https://github.com/mini-project-evey-team/four-cuts-backend
https://www.figma.com/file/MbsZFcbjwxp8YEJLKlwHmX/4cut?type=design&node-id=0-1&mode=design
페이지 | 기능 | method | API url | request | response | 구현 하는 사람 |
---|---|---|---|---|---|---|
메인 | 인생네컷 메인 사진 조회 | GET | /api/main/photo | { | ||
photoUrls: [ | ||||||
링크 1, 링크2,링크3, 링크4, 링크5 | ||||||
] | ||||||
} | 정지현 | |||||
인생네컷 글 목록 | 인생네컷 게시글 목록 조회 | GET | /api/post?page=1 | [ | ||
{ | ||||||
id: 8, | ||||||
username: "username", | ||||||
title: "ㅁㄴ", | ||||||
content: "ㅁㄴㄹㅇㄹ", | ||||||
photoUrl: [ | ||||||
링크 1, 링크2,링크3, 링크4 | ||||||
], | ||||||
createdAt: "2023-07-19 11:16:52" | ||||||
}, | ||||||
{ | ||||||
id: 7, | ||||||
username: "username", | ||||||
title: "ㄴ", | ||||||
content: "ㄴ", | ||||||
photoUrl: [ | ||||||
링크 1, 링크2,링크3, 링크4 | ||||||
], | ||||||
createdAt: "2023-07-19 11:16:22" | ||||||
}, | 이채원 | |||||
인생네컷 글 상세 | 인생네컷 게시글 상세 조회 | GET | /api/post/{postId} | { | ||
id: 7, | ||||||
username: "username", | ||||||
title: "ㄴ", | ||||||
content: "ㄴ", | ||||||
photoUrl: [ | ||||||
링크 1, 링크2,링크3, 링크4 | ||||||
], | ||||||
createdAt: "2023-07-19 11:16:22" | ||||||
} | 이채원 | |||||
인생네컷 글 작성 | 인생네컷 게시글 작성 | POST | /api/post | {username : 사용자 이름, title:제목, content:내용, photos: List<MultipartFile>} | {msg: 작성 완료} | 정지현 |