-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: ♻️ coalition model 을 page/common/model 로 이동
- #378
- Loading branch information
Showing
8 changed files
with
46 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { Field, ObjectType } from '@nestjs/graphql'; | ||
|
||
@ObjectType() | ||
export class Coalition { | ||
@Field() | ||
id: number; | ||
|
||
@Field() | ||
name: string; | ||
|
||
@Field({ deprecationReason: 'deprecated at v0.9.0' }) | ||
slug: string; | ||
|
||
@Field({ deprecationReason: 'deprecated at v0.9.0, imgUrl 을 사용하세요.' }) | ||
imageUrl: string; | ||
|
||
@Field() | ||
imgUrl: string; | ||
|
||
@Field() | ||
coverUrl: string; | ||
|
||
@Field() | ||
color: string; | ||
|
||
@Field({ deprecationReason: 'deprecated at v0.9.0' }) | ||
score: number; | ||
|
||
@Field({ | ||
description: '코알리숑 마스터의 user id 입니다.', | ||
deprecationReason: 'deprecated at v0.9.0', | ||
}) | ||
userId: number; | ||
} |
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
2 changes: 1 addition & 1 deletion
2
app/src/page/personal/general/character/personal.general.character.pokemon.ts
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
2 changes: 1 addition & 1 deletion
2
app/src/page/personal/general/models/personal.general.userProfile.model.ts
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