Skip to content

Commit

Permalink
fix :: add missing response (ws dto)
Browse files Browse the repository at this point in the history
  • Loading branch information
jombidev committed Oct 23, 2024
1 parent 504ae06 commit c9928c9
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ data class NewChatMessage(
val roomId: Long,
val userId: Long,
val isAi: Boolean,
val regenScope: Boolean,
val promptId: String?,
) : BaseResponseMessage {
override val type = MessageType.NEW_CHAT
Expand All @@ -27,6 +28,7 @@ data class NewChatMessage(
chat.roomId,
chat.userId,
chat.isAi,
chat.regenScope,
chat.promptId,
)
}
Expand Down

0 comments on commit c9928c9

Please sign in to comment.