Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Board(
val createdAt: LocalDateTime,

@Column(name = "image_url", length = 800, nullable = true)
val imageUrl: String,
val imageUrl: String?,
) {

fun minusLikeCount() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data class WriteCommunityBoardDto(
val content: String,
@NotNull
val gameCategory: GameCategory,
val imageUrl: String,
val imageUrl: String?,
)

data class GetCommunityBoardResDto(
Expand Down Expand Up @@ -49,7 +49,7 @@ data class GetCommunityBoardInfoResDto(
val isLiked: Boolean,
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss")
val createdAt: LocalDateTime,
val imageUrl: String,
val imageUrl: String?,
val stage: StageDto,
val commentCount: Int,
val comment: List<CommentDto>
Expand Down