Add MANAGE_ENCRYPTION permission

This commit is contained in:
bitfl0wer 2023-12-17 20:47:52 +01:00
parent abd25b2040
commit e0492bb2f6
No known key found for this signature in database
GPG Key ID: 0ACD574FCF5226CF
1 changed files with 2 additions and 0 deletions

View File

@ -163,6 +163,8 @@ bitflags! {
const USE_EXTERNAL_SOUNDS = 1 << 45; const USE_EXTERNAL_SOUNDS = 1 << 45;
/// Allows sending voice messages /// Allows sending voice messages
const SEND_VOICE_MESSAGES = 1 << 46; const SEND_VOICE_MESSAGES = 1 << 46;
/// Allows creating encrypted voice channels
const MANAGE_ENCRYPTION = 1 << 63;
} }
} }