Merge branch 'be/lecture' into 'backend'

feat: lecture 강의 삭제시 저장소에서 사진 삭제

See merge request s11-webmobile1-sub2/S11P12A701!164
This commit is contained in:
박정민 2024-08-12 09:50:07 +09:00
commit 852d0efc2e

View File

@ -113,6 +113,12 @@ public class LectureServiceImpl implements LectureService {
return false;
}
String image = lecture.getImage();
if (image != null) {
File file = new File(lecture.getImage());
file.delete();
}
lectureRepository.deleteById(lectureId);
return true;
}