Kaynağa Gözat

mailbox: show unseen message count in page title

master
Drew DeVault 4 yıl önce
committed by Simon Ser
ebeveyn
işleme
2d86413876
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: FDE7BE0E88F5E48
1 değiştirilmiş dosya ile 4 ekleme ve 0 silme
  1. +4
    -0
      plugins/base/routes.go

+ 4
- 0
plugins/base/routes.go Dosyayı Görüntüle

@@ -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,


Yükleniyor…
İptal
Kaydet