Skip to content

Commit e02fbf0

Browse files
authored
feat : 관심사 키워드 조정 (#274)
1 parent 002ceba commit e02fbf0

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

adapters/in-web/src/main/kotlin/com/pokit/user/UserController.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ class UserController(
6767
@Operation(summary = "관심사 목록 조회 API")
6868
fun getInterests(): ResponseEntity<List<InterestTypeResponse>> =
6969
InterestType.values()
70+
.filter { it != InterestType.DEFAULT }
7071
.map { InterestTypeResponse(it.name, it.kor) }
7172
.wrapOk()
7273

domain/src/main/kotlin/com/pokit/user/model/InterestType.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,9 @@ enum class InterestType(
1414
PET("반려동물"),
1515
COOKING("요리/레시피"),
1616
SPORTS("스포츠/레저"),
17-
OFFICE("문구/오피스"),
18-
FASHION("패션"),
1917
TRAVEL("여행"),
2018
ECONOMY("경제/시사"),
2119
MOVIE_DRAMA("영화/드라마"),
22-
RESTAURANT("맛집"),
2320
INTERIOR("인테리어"),
2421
IT("IT"),
2522
DESIGN("디자인"),

0 commit comments

Comments
 (0)