Skip to content

Commit

Permalink
feat: 탈퇴한 회원의 경우 default 정보가 노출되는 정책 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
woowabrie committed Jun 14, 2024
1 parent 4aaef87 commit bede24b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/kotlin/apply/ui/admin/mail/MailForm.kt
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,6 @@ class MailForm(
}

private fun refreshGridFooter() {
mailData?.let {
mailTargetsGrid.columns.first().setFooter("받는사람: ${mailTargets.size}명 (탈퇴 회원 포함 총 ${it.recipients.size}명)")
} ?: mailTargetsGrid.columns.first().setFooter("받는사람: ${mailTargets.size}")
mailTargetsGrid.columns.first().setFooter("받는사람: ${mailTargets.size}")
}
}
1 change: 1 addition & 0 deletions src/test/kotlin/apply/application/MailTargetServiceTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ class MailTargetServiceTest : BehaviorSpec({
}
}

// TODO[#754]: 탈퇴한 회원의 경우 default 정보가 노출된다.
Given("메일 이력을 통해 회원 id 목록을 확인할 수 있는 경우") {
val members = listOf(
createMember(id = 1L),
Expand Down

0 comments on commit bede24b

Please sign in to comment.