-
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.
* feat: 리뷰관련 api 명세 바뀐 것 적용 * feat: 매너스코어 뮤테이션에 관련 쿼리 무효화 로직 추가 * feat: 리뷰남기기 가능 기간인지 확인하는 도메인 유틸함수 작성 * feat: 리뷰남기기 관련 변경사항 ui에 적용 * feat: 리뷰남기기 관련 api 변경사항 mock 데이터에 적용
- Loading branch information
Showing
12 changed files
with
136 additions
and
20 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
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 |
---|---|---|
|
@@ -4,7 +4,12 @@ import { | |
PostRefreshAccessTokenResponse, | ||
PostRegistrationResponse, | ||
} from '@type/api/member'; | ||
import { Authenticated, CrewProfile, Game, Registration } from '@type/models'; | ||
import { | ||
Authenticated, | ||
CrewProfile, | ||
MemberGame, | ||
Registration, | ||
} from '@type/models'; | ||
|
||
export const AUTH_LOGIN_MEMBER: Authenticated = { | ||
accessToken: | ||
|
@@ -129,7 +134,7 @@ export const MEMBERS_MEMBERID: GetMemberProfileResponse = { | |
], | ||
}; | ||
|
||
export const MEMBERS_MEMBERID_CONFIRMED_GAMES: Game[] = [ | ||
export const MEMBERS_MEMBERID_CONFIRMED_GAMES: MemberGame[] = [ | ||
{ | ||
id: 1, | ||
content: '같이 즐거운 게임 해요~', | ||
|
@@ -146,6 +151,7 @@ export const MEMBERS_MEMBERID_CONFIRMED_GAMES: Game[] = [ | |
cost: 0, | ||
memberCount: 3, | ||
maxMemberCount: 5, | ||
isReviewDone: false, | ||
host: { | ||
id: 1, | ||
email: '[email protected]', | ||
|
@@ -190,7 +196,7 @@ export const MEMBERS_MEMBERID_CONFIRMED_GAMES: Game[] = [ | |
}, | ||
]; | ||
|
||
export const MEMBERS_MEMBERID_CREATED_GAMES: Game[] = [ | ||
export const MEMBERS_MEMBERID_CREATED_GAMES: MemberGame[] = [ | ||
{ | ||
id: 1, | ||
content: '같이 즐거운 게임 해요~', | ||
|
@@ -207,6 +213,7 @@ export const MEMBERS_MEMBERID_CREATED_GAMES: Game[] = [ | |
cost: 0, | ||
memberCount: 3, | ||
maxMemberCount: 5, | ||
isReviewDone: false, | ||
host: { | ||
id: 1, | ||
email: '[email protected]', | ||
|
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
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
Oops, something went wrong.