Skip to content

Commit

Permalink
[FIX] hasAlarm 필드 다시 삭제 (서버에서 보관 필요 없음) #55
Browse files Browse the repository at this point in the history
  • Loading branch information
ddongseop committed Jul 18, 2023
1 parent d4bd7b8 commit d102e09
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ public void updateRefreshToken(String refreshToken) {
@Column(nullable = false)
private String fcmToken; // registration+token

@Column(nullable = false)
private boolean hasAlarm;

public void updateFcmToken(String fcmToken) {
this.fcmToken = fcmToken;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ public UserLoginResponseDto login(String socialAccessToken, SocialLoginRequestDt
.socialId(socialId)
.isMeChild(true)
.isMatchFinish(false)
.hasAlarm(false)
.fcmToken(request.getFcmToken())
.build();

Expand Down

0 comments on commit d102e09

Please sign in to comment.