1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-09-15 18:57:04 +00:00

refactor(googlereader): rename stream suffix constants for clarity

This commit is contained in:
Frédéric Guillot 2025-07-13 14:24:35 -07:00
parent 0d5f4a710f
commit 4679691c94
3 changed files with 32 additions and 34 deletions

View file

@ -14,18 +14,18 @@ const (
userLabelPrefix = "user/%d/label/"
// feedPrefix is the prefix for a feed stream
feedPrefix = "feed/"
// read is the suffix for read stream
read = "read"
// starred is the suffix for starred stream
starred = "starred"
// readingList is the suffix for reading list stream
readingList = "reading-list"
// keptUnread is the suffix for kept unread stream
keptUnread = "kept-unread"
// broadcast is the suffix for broadcast stream
broadcast = "broadcast"
// broadcastFriends is the suffix for broadcast friends stream
broadcastFriends = "broadcast-friends"
// like is the suffix for like stream
like = "like"
// readStreamSuffix is the suffix for read stream
readStreamSuffix = "read"
// starredStreamSuffix is the suffix for starred stream
starredStreamSuffix = "starred"
// readingListStreamSuffix is the suffix for reading list stream
readingListStreamSuffix = "reading-list"
// keptUnreadStreamSuffix is the suffix for kept unread stream
keptUnreadStreamSuffix = "kept-unread"
// broadcastStreamSuffix is the suffix for broadcast stream
broadcastStreamSuffix = "broadcast"
// broadcastFriendsStreamSuffix is the suffix for broadcast friends stream
broadcastFriendsStreamSuffix = "broadcast-friends"
// likeStreamSuffix is the suffix for like stream
likeStreamSuffix = "like"
)