Skip to content

Commit

Permalink
Merge pull request #60 from Team-Umbba/fix/#55-client_api_change
Browse files Browse the repository at this point in the history
[FIX] hasAlarm 필드 다시 삭제 (서버에서 보관 필요 없으므로)
  • Loading branch information
ddongseop authored Jul 18, 2023
2 parents cc7032b + d102e09 commit 546345d
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 @@ -66,9 +66,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 546345d

Please sign in to comment.