Arjan
(Arjan)
6월 12, 2022, 11:43오전
1
Very minor, looking at the admin page for a user, I see June displayed as July:
Looking at /admin/email/bounced for this user shows the last bounce was 4 days ago, tooltip showing Jun 8, 2022 11:44 am.
(Aside, I was expecting to use https://github.com/discourse/discourse to find/report issues. Its README also does not mention Meta?)
1개의 좋아요
Benjamin_D
(Benjamin Decotte)
6월 12, 2022, 12:19오후
2
I think that’s the date when the bounce score is to be reset:
@discourseComputed("bounce_score", "reset_bounce_score_after")
bounceScore(bounce_score, reset_bounce_score_after) {
if (bounce_score > 0) {
return `${bounce_score} - ${moment(reset_bounce_score_after).format(
"LL"
)}`;
} else {
return bounce_score;
}
},
not the date of the last bounced email
4개의 좋아요
Arjan
(Arjan)
6월 12, 2022, 6:21오후
3
Ah, that may explain things. (Though I don’t know what an admin would do with that information.) And indeed it also shows a Reset button for this very example:
1개의 좋아요
해당 페이지에서 그 정보에 대해 좀 더 맥락을 제공해야 한다는 의견이 있을 수 있습니다. 이 주제를 Contribute > UX 채널로 옮겨 검토를 요청했습니다.
2개의 좋아요