2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Added initial entry point for channel statistics.

This commit is contained in:
23rd
2023-04-26 21:49:51 +03:00
committed by John Preston
parent ad8f8513c3
commit b0a65885c9
3 changed files with 14 additions and 0 deletions

View File

@@ -62,6 +62,7 @@ enum class ChannelDataFlag {
StoriesHidden = (1 << 26),
HasActiveStories = (1 << 27),
HasUnreadStories = (1 << 28),
CanGetStatistics = (1 << 29),
};
inline constexpr bool is_flag_type(ChannelDataFlag) { return true; };
using ChannelDataFlags = base::flags<ChannelDataFlag>;