Skip to content

Commit

Permalink
fix : admin 포즈 추가시 출처 url이 저장되지 않는 이슈 수정 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
youngjijang authored Apr 28, 2024
1 parent ce30d07 commit 6771277
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class AdminPoseController(
tagIds = poseAddRequest.tagIds.map { it.toLong() },
peopleCount = poseAddRequest.peopleCount,
sourceTitle = poseAddRequest.sourceTitle,
sourceUrl = poseAddRequest.sourceURL,
sourceUrl = poseAddRequest.sourceUrl,
)
return "redirect:/pose"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ data class PoseAddRequest(
val tagIds: List<String> = emptyList(),
val peopleCount: Int,
val sourceTitle: String?,
val sourceURL: String?,
val sourceUrl: String?,
)

0 comments on commit 6771277

Please sign in to comment.