user no stays in cache forever, fix some hubs bugs and add new enpoints

This commit is contained in:
2026-05-04 14:03:02 +02:00
parent 22e2d18810
commit 015c79bf09
14 changed files with 260 additions and 34 deletions
+3 -1
View File
@@ -26,17 +26,19 @@ const (
UserProfileBg
HubIcon
HubBackground
ChannelIcon
)
type DataTypePrefix string
const (
ConnectionFilePrefix DataTypePrefix = "connection/"
HubChannelFilePrefix DataTypePrefix = "hub/"
HubChannelFilePrefix DataTypePrefix = "hubChannel/"
UserAvatarPrefix DataTypePrefix = "userAvatar/"
UserProfileBgPrefix DataTypePrefix = "userProfileBg/"
HubIconPrefix DataTypePrefix = "hubIcon/"
HubBackgroundPrefix DataTypePrefix = "hubBackground/"
ChannelIconPrefix DataTypePrefix = "channelIcon/"
)
type GetKeyOptions struct {