-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
✨ feat: 어디있니 추가 API #207
✨ feat: 어디있니 추가 API #207
Conversation
|
||
const cards = await this.userService.findCardsByUserId( | ||
user.user_id, | ||
new Date('2019-01-01 00:00:00'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'2019-01-01 00:00:00' 와 같이 고정된 시작시간 같은경우에는 utils/common.constants.ts 에 정의해서 상수로 쓰는게 어떨까 싶습니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
기존 것 그대로 사용했는데 시작 날은 고정이니 그러는 게 좋겠군요 👍
이후에 리팩토링 브랜치에서 꼭 진행하도록 하겠습니닷
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
기존에 보내주던 출/퇴 시간은 필요없나요??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이름/상태만 필요하다구 하시더라구용
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다!! 👍
코멘트 확인해보시고 괜찮으면 수정 후 머지하시거나, 크게 상관없다고 생각되면 머지하시면 될거같습니다!
요청
어디있니 팀:
혹시 저희가 카뎃 이름 리스트를 파라미터로 보내면
의 DTO로 보내주실 수 있는지 생각이 들었습니다.
추가한 API
POST 요청 속 body:
[ "intra-id1", "intra-id2", "intra-id3", ... ]
응답:
*반환 데이터는 순서가 중요하지 않다고 하여 비동기로 처리하였습니다.
*admin유저(bocal) 혹은 없는 로그인에 대한 inoutState는 null로 반환을 요청받았습니다.
*현재는 login, inoutState뿐만 아니라 기존의 타입인 cluster, tag_at도 함께 반환합니다.
변경
InOut
에서InOut | null
이 되었습니다.is_admin
이 추가되었습니다.어디있니 팀 작업 이후 변경 예정 작업
a. 기존 api도 이 타입을 반환하여 함께 변경
여담