Notifications Add State Field (#384)

Reviewed-on: https://gitea.com/gitea/tea/pulls/384
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Reviewed-by: Andrew Thornton <art27@cantab.net>
Reviewed-by: Norwin <noerw@noreply.gitea.io>
Co-authored-by: 6543 <6543@obermui.de>
Co-committed-by: 6543 <6543@obermui.de>
This commit is contained in:
6543 2021-08-16 21:23:16 +08:00
parent ab4e11ae4d
commit 4b9907fb54
1 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ import (
func NotificationsList(news []*gitea.NotificationThread, output string, showRepository bool) {
headers := []string{
"Type",
"State",
"Index",
"Title",
}
@ -38,7 +39,7 @@ func NotificationsList(news []*gitea.NotificationThread, output string, showRepo
index = "#" + index
}
item := []string{string(n.Subject.Type), index, n.Subject.Title}
item := []string{string(n.Subject.Type), string(n.Subject.State), index, n.Subject.Title}
if showRepository {
item = append(item, n.Repository.FullName)
}