Merge branch 'be/Lecture' into 'backend'
feat: Lecture 내 강의 조회 수정 See merge request s11-webmobile1-sub2/S11P12A701!47
This commit is contained in:
commit
285e19dc89
@ -205,12 +205,14 @@ public class LectureServiceImpl implements LectureService {
|
||||
for (Registration registration : registrationList) {
|
||||
Lecture lecture = registration.getLecture();
|
||||
|
||||
LectureSearchResponse lectureSearchResponse = LectureSearchResponse.builder()
|
||||
.id(lecture.getId())
|
||||
.title(lecture.getTitle())
|
||||
.image(lecture.getImage()).build();
|
||||
if (registration.getStatus() == RegistrationStatus.ACCEPTED) {
|
||||
LectureSearchResponse lectureSearchResponse = LectureSearchResponse.builder()
|
||||
.id(lecture.getId())
|
||||
.title(lecture.getTitle())
|
||||
.image(lecture.getImage()).build();
|
||||
|
||||
myLectureList.add(lectureSearchResponse);
|
||||
myLectureList.add(lectureSearchResponse);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -233,16 +235,13 @@ public class LectureServiceImpl implements LectureService {
|
||||
|
||||
}
|
||||
|
||||
Lecture l;
|
||||
l = lecture.get();
|
||||
if(l.isOnline())
|
||||
{
|
||||
l.setOnline(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
l.setOnline(true);
|
||||
}
|
||||
Lecture l;
|
||||
l = lecture.get();
|
||||
if (l.isOnline()) {
|
||||
l.setOnline(false);
|
||||
} else {
|
||||
l.setOnline(true);
|
||||
}
|
||||
|
||||
|
||||
lectureRepository.save(l);
|
||||
|
Loading…
Reference in New Issue
Block a user