We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d31560f commit be255eeCopy full SHA for be255ee
src/main/java/com/memesphere/domain/notification/converter/NotificationConverter.java
@@ -18,6 +18,7 @@ public static Notification toNotification(NotificationRequest notificationReques
18
.stTime(notificationRequest.getStTime())
19
.isRising(notificationRequest.getIsRising())
20
.user(user)
21
+ .isOn(true)
22
.build();
23
}
24
@@ -29,6 +30,7 @@ public static NotificationResponse toNotificationCreateResponse(Notification not
29
30
.volatility(notification.getVolatility())
31
.stTime(notification.getStTime())
32
.isRising(notification.getIsRising())
33
+ .isOn(notification.getIsOn())
34
.coinId(memeCoin.getId())
35
36
0 commit comments