Skip to content

Commit

Permalink
setting: entity 모듈은 common 모듈을 의존하도록 설정 (예외처리를 위해)
Browse files Browse the repository at this point in the history
  • Loading branch information
toychip committed Aug 17, 2024
1 parent b43e193 commit b117fb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ project(":entity") {
apply(plugin = "org.jetbrains.kotlin.plugin.jpa")

dependencies {
api(project(":common"))
api("org.springframework.boot:spring-boot-starter-data-jpa")
api("com.mysql:mysql-connector-j:${properties["mysqlConnectorVersion"]}")
runtimeOnly("com.h2database:h2:${properties["h2DatabaseVersion"]}") // todo : fade out
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,9 @@ class DefaultQuestionService(
* ToDo 아래는 추후 캐시에 넣는 작업을 해야합니다.
* - cache put -> QuestionSet and return
* - Temporarily set to create for all members, discuss details later
* 질문의 타입에 따라 적절한 후보자 리스트를 사용
*/

// 질문의 타입에 따라 적절한 후보자 리스트를 사용

val candidates =
if (questionType == QuestionType.FRIEND) {
candidatesOfFriend
Expand Down

0 comments on commit b117fb4

Please sign in to comment.