xmpp-parsers: Add Message Reactions (XEP-0444) support

This commit is contained in:
Emmanuel Gil Peyrot 2022-12-30 15:16:33 +01:00
commit 6bd407605b
4 changed files with 109 additions and 5 deletions

View file

@ -272,6 +272,9 @@ pub const BOOKMARKS2_COMPAT_PEP: &str = "urn:xmpp:bookmarks:1#compat-pep";
/// XEP-0421: Anonymous unique occupant identifiers for MUCs
pub const OID: &str = "urn:xmpp:occupant-id:0";
/// XEP-0444: Message Reactions
pub const REACTIONS: &str = "urn:xmpp:reactions:0";
/// Alias for the main namespace of the stream, that is "jabber:client" when
/// the component feature isnt enabled.
#[cfg(not(feature = "component"))]