Skip to content

Commit

Permalink
Merge pull request #40 from 9oormthonUniv-seoultech/docs/#34
Browse files Browse the repository at this point in the history
fix:사진항상좋아요true
  • Loading branch information
sooieese00 authored Nov 7, 2024
2 parents efb9923 + 7487412 commit a4bd7b5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
8 changes: 4 additions & 4 deletions build/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -881,8 +881,8 @@ paths:
post:
tags:
- Photo
summary: 사진 즐겨찾기 토글
description: '특정 사진의 즐겨찾기 상태를 반대로 변경합니다. 사진이 즐겨찾기에 등록되어 있으면 해제하고, 해제되어 있으면 등록합니다.'
summary: 사진 즐겨찾기 등록
description: 특정 사진의 즐겨찾기 상태를 true로 변경합니다. 이미 등록된 상태인 경우에는 유지됩니다.
parameters:
- in: path
name: photo_id
Expand All @@ -892,7 +892,7 @@ paths:
description: 즐겨찾기 상태를 변경할 사진의 ID
responses:
'200':
description: 즐겨찾기 상태가 성공적으로 업데이트되었습니다.
description: 즐겨찾기 상태가 성공적으로 등록되었습니다.
content:
application/json:
schema:
Expand All @@ -904,7 +904,7 @@ paths:
example: 1
photo_like:
type: boolean
description: 변경된 즐겨찾기 상태
description: 즐겨찾기 상태 (항상 true)
example: true
'404':
description: 해당 ID의 사진이 존재하지 않는 경우
Expand Down
3 changes: 1 addition & 2 deletions controllers/photoController.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,7 @@ const photoLike = async (req, res) => {
res.status(404).json({ status: 'fail', message: '사진을 찾을 수 없습니다.'});
}

// photo_like 값 반대로 변경
photo.photo_like = !photo.photo_like;
photo.photo_like = true;
await photo.save();

return res.status(200).json({
Expand Down
8 changes: 4 additions & 4 deletions docs/photo-like.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
post:
tags:
- Photo
summary: "사진 즐겨찾기 토글"
description: "특정 사진의 즐겨찾기 상태를 반대로 변경합니다. 사진이 즐겨찾기에 등록되어 있으면 해제하고, 해제되어 있으면 등록합니다."
summary: "사진 즐겨찾기 등록"
description: "특정 사진의 즐겨찾기 상태를 true로 변경합니다. 이미 등록된 상태인 경우에는 유지됩니다."
parameters:
- in: path
name: photo_id
Expand All @@ -12,7 +12,7 @@ post:
description: "즐겨찾기 상태를 변경할 사진의 ID"
responses:
200:
description: "즐겨찾기 상태가 성공적으로 업데이트되었습니다."
description: "즐겨찾기 상태가 성공적으로 등록되었습니다."
content:
application/json:
schema:
Expand All @@ -24,7 +24,7 @@ post:
example: 1
photo_like:
type: boolean
description: "변경된 즐겨찾기 상태"
description: "즐겨찾기 상태 (항상 true)"
example: true
404:
description: "해당 ID의 사진이 존재하지 않는 경우"
Expand Down

0 comments on commit a4bd7b5

Please sign in to comment.