-
Notifications
You must be signed in to change notification settings - Fork 0
[OD-154] user, auth 도메인 response 응답에 따라 dto 수정 #113
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
Conversation
gustn99
left a comment
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 임포트 시 type이 빠진 부분이 보여 코멘트 남겼습니다! 상대경로에만 type을 추가하신 것으로 보이는데, 절대경로에도 붙여주셔야 하니 혹시 다른 부분들도 누락되진 않았는지 한번 점검 부탁드려요!
src/apis/user/dto.ts
Outdated
| @@ -1,15 +1,15 @@ | |||
| import { BaseSuccessResponse } from '../core/dto'; | |||
| import { BaseSuccessResponse } from '@apis/core/dto'; | |||
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.
type이 빠졌어요!
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.
156번 브랜치에서도 type 키워드 관련 누락이 보였으나 154번 브랜치에서 일괄 처리하시는 것이 편리하실 것 같아 156번은 머지했습니다! 풀 받으시고 user block, user report 도메인 부분에서도 절대경로 dto에 대해 type 키워드 추가해 주세용
src/apis/auth/dto.ts
Outdated
| @@ -1,14 +1,15 @@ | |||
| import { BaseSuccessResponse } from '../core/dto'; | |||
| import { BaseSuccessResponse } from '@apis/core/dto'; | |||
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.
type이 빠졌어요!
src/apis/user/index.ts
Outdated
| import { newRequest } from '../core'; | ||
| import { EmptySuccessResponse } from '../core/dto'; | ||
| import { newRequest } from '@apis/core'; | ||
| import { EmptySuccessResponse } from '@apis/core/dto'; |
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.
type이 빠졌습니다!
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.
고생하셨습니다~~
주요 작업 내용
기타 작업 내용
코드 리뷰 포인트
작업 화면