Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
[BE] fix: url -> publishedUrl 필드명 변경 (#460)
Browse files Browse the repository at this point in the history
fix: `url` -> `publishedUrl` 필드명 변경
  • Loading branch information
Eun-chan Cho committed Oct 6, 2023
1 parent e046de9 commit e56e834
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public record PublishedDetailResponse(
String blogName,
LocalDateTime publishedAt,
List<String> tags,
String url
String publishedUrl
) {
public static PublishedDetailResponse of(final BlogWriting blogWriting) {
return new PublishedDetailResponse(blogWriting.getBlogTypeValue(), blogWriting.getPublishedAt(), blogWriting.getTags(), blogWriting.getUrl());
Expand Down

0 comments on commit e56e834

Please sign in to comment.