Skip to content

Commit

Permalink
Add SUPPRESS_NOTIFICATIONS to InteractionResponseFlags (serenity-rs#2804
Browse files Browse the repository at this point in the history
)
  • Loading branch information
MidSpike committed Mar 17, 2024
1 parent 9480777 commit 5f2037d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/model/application/interaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,8 @@ bitflags! {
/// Interaction message will only be visible to sender and will
/// be quickly deleted.
const EPHEMERAL = 1 << 6;
/// Does not trigger push notifications or desktop notifications.
const SUPPRESS_NOTIFICATIONS = 1 << 12;
}
}

Expand Down

0 comments on commit 5f2037d

Please sign in to comment.