Skip to content

Commit

Permalink
[BE] HOTFIX : 수요지식회 기본 장소 3층 -> 지하실로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Z1Park committed May 19, 2024
1 parent dcacbb1 commit 83fd803
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,26 +60,25 @@ public class Presentation {
private User user;

protected Presentation(Category category, LocalDateTime dateTime,
PresentationTime presentationTime, String subject, String summary, String detail) {
PresentationTime presentationTime, String subject, String summary, String detail) {
this.category = category;
this.dateTime = dateTime;
this.presentationTime = presentationTime;
this.subject = subject;
this.detail = detail;
this.summary = summary;
this.presentationStatus = PresentationStatus.EXPECTED;
this.presentationLocation = PresentationLocation.THIRD;
this.presentationLocation = PresentationLocation.BASEMENT;
}

public static Presentation of(Category category, LocalDateTime dateTime,
PresentationTime presentationTime, String subject, String summary, String detail) {
PresentationTime presentationTime, String subject, String summary, String detail) {

return new Presentation(category, dateTime, presentationTime, subject,
summary, detail);
return new Presentation(category, dateTime, presentationTime, subject, summary, detail);
}

public void adminUpdate(PresentationStatus newStatus, LocalDateTime newDateTime,
PresentationLocation newLocation) {
PresentationLocation newLocation) {
this.presentationStatus = newStatus;
this.dateTime = newDateTime;
this.presentationLocation = newLocation;
Expand Down

0 comments on commit 83fd803

Please sign in to comment.