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:
parent
ab4e11ae4d
commit
4b9907fb54
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue