-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 Fix: 회고 생성일 날짜 형식 수정 및 생성자 닉네임 렌더링 완료
- Loading branch information
1 parent
1e3597f
commit 95033bd
Showing
7 changed files
with
45 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
// get | ||
export interface GetUsersRequest { | ||
// userId: number; | ||
} | ||
|
||
export interface GetUsersResponse { | ||
userId: number; | ||
username: string; | ||
email: string; | ||
thumbnail: string | null; | ||
phone: string | null; | ||
createDate: Date; | ||
updateDate: Date; | ||
code: number; | ||
data: { | ||
userId: number; | ||
userName: string; | ||
email: string; | ||
thumbnail: string | null; | ||
phone: string | null; | ||
createDate: Date; | ||
updateDate: Date; | ||
}; | ||
message: string | null; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters