Skip to content

Commit

Permalink
[#140] feat: remind toggle 변경 메서드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JuHyun419 committed Aug 29, 2022
1 parent 9de051e commit c4ec5b8
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ class Account(
return false
}

fun inverseRemindToggle(reverse: Boolean) {
this.remindToggle = reverse
}

companion object {
fun signUpToAccount(dto: AccountRequestDto.SignUpRequest, encryptPassword: String, name: String): Account {
return Account(dto.email, encryptPassword, dto.fcmToken, name)
Expand Down

0 comments on commit c4ec5b8

Please sign in to comment.