Add MANAGE_ENCRYPTION permission

This commit is contained in:
bitfl0wer 2023-12-17 20:47:52 +01:00
parent 2fc94c84d5
commit db476e94ee
1 changed files with 2 additions and 0 deletions

View File

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