Skip to content

Commit

Permalink
fix: 학교공지 파일 타입 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dongyeon1031 committed Aug 16, 2024
1 parent 0dddb02 commit c648730
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public CampusNotice toCampusNoticeEntity(FileService fileService, CampusNoticeTy
List<File> files = null;
if (fileService.checkExistRequestFile(multipartFiles)) {
FileSaveDTO fileSaveDTO = FileSaveDTO.builder()
.fileType(FileType.EVENT.getType())
.fileType(FileType.CAMPUS_NOTICE.getType())
.multipartFileList(multipartFiles)
.build();

Expand Down

0 comments on commit c648730

Please sign in to comment.