Skip to content

Commit 0fe9937

Browse files
committed
fix: reaction 이벤트 타입 조회 이슈 수정
1 parent 264f5a7 commit 0fe9937

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

domain/src/main/kotlin/com/backgu/amaker/domain/event/ReactionEvent.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class ReactionEvent(
1212
updatedAt: LocalDateTime = LocalDateTime.now(),
1313
) : Event(id, eventTitle, deadLine, notificationStartTime, notificationInterval, createdAt, updatedAt) {
1414
companion object {
15-
const val EVENT_TYPE = "REPLY"
15+
const val EVENT_TYPE = "REACTION"
1616
}
1717

1818
fun createReactionOption(contents: List<String>) =

0 commit comments

Comments
 (0)