Skip to content

Commit

Permalink
test :: 원상 복구!
Browse files Browse the repository at this point in the history
  • Loading branch information
4mjeo committed Feb 25, 2024
1 parent e6db314 commit 7ceb541
Showing 1 changed file with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,10 @@ class FileServiceImpl(
}

override fun uploads(file: List<MultipartFile>, projectNameEn: String): FileUrlListResponse {
val fileUrlResponses = file.map {
println("Uploading file: ${it.name}")
val result = uploadFile(it, projectNameEn)
println("Uploaded file: ${it.name}, URL: ${result.url}")
result
}
return FileUrlListResponse(
files = fileUrlResponses.toMutableList()
file.map {
uploadFile(it, projectNameEn)
}.toMutableList()
)
}

Expand Down

0 comments on commit 7ceb541

Please sign in to comment.