We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 286a1ea commit e4c4382Copy full SHA for e4c4382
src/model.rs
@@ -679,6 +679,8 @@ pub mod permissions {
679
const MANAGE_NICKNAMES = 1 << 27,
680
/// Manage the emojis in a a server.
681
const MANAGE_EMOJIS = 1 << 30,
682
+ /// Manage channel webhooks
683
+ const MANAGE_WEBHOOKS = 1 << 29,
684
685
const READ_MESSAGES = 1 << 10,
686
const SEND_MESSAGES = 1 << 11,
@@ -693,6 +695,8 @@ pub mod permissions {
693
695
const MENTION_EVERYONE = 1 << 17,
694
696
/// Use emojis from other servers
697
const EXTERNAL_EMOJIS = 1 << 18,
698
+ /// Add emoji reactions to messages
699
+ const ADD_REACTIONS = 1 << 6,
700
701
const VOICE_CONNECT = 1 << 20,
702
const VOICE_SPEAK = 1 << 21,
0 commit comments