Skip to content

Commit

Permalink
style: 주석 내용 위치 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kjungw1025 committed Dec 4, 2023
1 parent 9631ac7 commit 09a29bf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ public List<ResponseDiagnosisResultDTO> result(@Valid @RequestBody RequestMember
return diagnosisResultService.findDiagnosisResult(dto);
}

/**
* TODO: MemberAuth와 토큰 적용해서 보안 문제 해결하기
*/
/**
* 멤버 별 특정 두피 진단 결과 삭제
*
* @param dto 멤버 정보와 삭제하고자 하는 정확한 날짜
* <p>현재 캘린더에서 두피 진단 결과 기록의 제목이 측정한 날짜이므로</p>
* <p>제목(날짜)을 request body에 담아서 보내주면 됩니다.</p>
*/
/**
* TODO: MemberAuth와 토큰 적용해서 보안 문제 해결하기
*/
@DeleteMapping("/result")
public void deleteResult(@Valid @RequestBody RequestDeleteDiagnosisInfoDTO dto) {
try {
Expand Down

0 comments on commit 09a29bf

Please sign in to comment.