2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 22:46:10 +00:00

Allow editing group wallpaper / status / emoji set.

This commit is contained in:
John Preston
2024-02-08 21:58:16 +04:00
parent 680171226c
commit 08efa73b2b
14 changed files with 308 additions and 110 deletions

View File

@@ -101,13 +101,14 @@ struct PeerUpdate {
// For channels
ChannelAmIn = (1ULL << 36),
StickersSet = (1ULL << 37),
ChannelLinkedChat = (1ULL << 38),
ChannelLocation = (1ULL << 39),
Slowmode = (1ULL << 40),
GroupCall = (1ULL << 41),
EmojiSet = (1ULL << 38),
ChannelLinkedChat = (1ULL << 39),
ChannelLocation = (1ULL << 40),
Slowmode = (1ULL << 41),
GroupCall = (1ULL << 42),
// For iteration
LastUsedBit = (1ULL << 41),
LastUsedBit = (1ULL << 42),
};
using Flags = base::flags<Flag>;
friend inline constexpr auto is_flag_type(Flag) { return true; }