This commit is contained in:
khj0414 2025-01-16 15:18:38 +09:00
parent d99799f140
commit 83c60f98eb

View File

@ -46,6 +46,11 @@ public class ImageUploadController {
@Value("${filePath.boardfile}")
private String boardFilePath;
/**
* 에디터 이미지 업로드
* @form-data file 업로드할 파일실제경로/파일이름
* @return
*/
@ParameterCheck
@PostMapping("/upload")
public ApiResponse<String> uploadImage(@RequestParam("file") MultipartFile file) throws IOException {