issues
search
eco-dessert-platform
/
backend
Apache License 2.0
0
stars
0
forks
source link
✅ 상품 상세페이지 스토어 조회 (/api/v1/boards/{boardId}/store)
#304
Closed
yunyechan9893
closed
2 weeks ago
yunyechan9893
commented
2 weeks ago
Issue: ✅ Feature
Description
스토어 프로필, 이름, 위시리스트 여부를 반환해줘야함
EndPoint
/api/v1/boards/{boardId}/store
Point of concern
위시리스트의 좋아요 여부를 판단하기 위해 fetchOne을 사용했으나, DB에 값이 없을 경우
null
을 반환하는 문제 발생.
이를 해결하기 위해
Optional
로 감싸
null
일 경우
false
, 값이 존재할 경우
true
로 반환하도록 수정.
To do
[x] 기능 구현
Issue: ✅ Feature
Description
EndPoint
Point of concern
null
을 반환하는 문제 발생.Optional
로 감싸null
일 경우false
, 값이 존재할 경우true
로 반환하도록 수정.To do