We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GET /dinings
id
updated_at
프론트에서는 0번 원소의 updated_at을 활용하나, 수정사항 발생 여부에 따라 k번째 원소에 최신의 updated_at이 들어있을 수 있기 때문이다.
관련 로직
created_at
참고 사항 #208
DTO
The text was updated successfully, but these errors were encountered:
No branches or pull requests
when
GET /dinings
as-is
id
순으로 오름차순)updated_at
을 표기함to-be
updated_at
}을 반환함.변경이 필요한 이유
프론트에서는 0번 원소의
updated_at
을 활용하나, 수정사항 발생 여부에 따라 k번째 원소에 최신의 updated_at이 들어있을 수 있기 때문이다.관련 로직
updated_at
을created_at
과 동일하다.updated_at
은 변경된다.-> 리스트 안에 수정사항 발생 여부에 따라 다른
updated_at
를 유지하고 있다.참고 사항
#208
진행 과정
updated_at
획득.DTO
에 최신updated_at
추가.DTO
에updated_at
데이터를 추가The text was updated successfully, but these errors were encountered: