1
0
Fork 0

Do not expose yet feed counter via API

This commit is contained in:
Frédéric Guillot 2019-11-29 11:49:53 -08:00
parent 69aa650203
commit a96e966911

View file

@ -33,8 +33,8 @@ type Feed struct {
Category *Category `json:"category,omitempty"`
Entries Entries `json:"entries,omitempty"`
Icon *FeedIcon `json:"icon"`
UnreadCount int
ReadCount int
UnreadCount int `json:"-"`
ReadCount int `json:"-"`
}
func (f *Feed) String() string {