Skip to content

Commit

Permalink
fix: 재배포
Browse files Browse the repository at this point in the history
  • Loading branch information
asdfg5415 committed Apr 1, 2021
1 parent 843d896 commit 1bf1d69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/MakeUs/Moira/domain/alarm/AlarmHistory.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ public AlarmResponseDto toAlarmResponseDto() {
.build();
}

public AlarmReadStatusUpdateResponseDto toAlarmReadStatusUpdateResponseDto(){
public AlarmReadStatusUpdateResponseDto toAlarmReadStatusUpdateResponseDto() {
return AlarmReadStatusUpdateResponseDto.builder()
.alarmId(id)
.read(readStatusToBoolean())
.build();
}

private boolean readStatusToBoolean(){
private boolean readStatusToBoolean() {
return this.readStatus.equals(ReadStatus.READ);
}

Expand Down

0 comments on commit 1bf1d69

Please sign in to comment.