소스 검색

mailbox: show unseen message count in page title

master
Drew DeVault 4 년 전
committed by Simon Ser
부모
커밋
2d86413876
No known key found for this signature in database GPG 키 ID: FDE7BE0E88F5E48
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      plugins/base/routes.go

+ 4
- 0
plugins/base/routes.go 파일 보기

@@ -142,6 +142,10 @@ func handleGetMailbox(ctx *alps.Context) error {
title = "Inbox"
}

if mbox.Unseen > 0 {
title = fmt.Sprintf("(%d) %s", mbox.Unseen, title)
}

return ctx.Render(http.StatusOK, "mailbox.html", &MailboxRenderData{
BaseRenderData: *alps.NewBaseRenderData(ctx).WithTitle(title),
Mailbox: mbox,


불러오는 중...
취소
저장