# HG changeset patch # User Matthew Wild # Date 1593688028 -3600 # Node ID 554f64c8d0c033db0a3e9e8ae9d5400428f089ec # Parent cf1304ad2336784313062ad294055a472f94efa4 mod_muc_markers: Expose is_markable utility function to other modules diff -r cf1304ad2336 -r 554f64c8d0c0 mod_muc_markers/mod_muc_markers.lua --- a/mod_muc_markers/mod_muc_markers.lua Tue Jun 30 19:32:39 2020 +0200 +++ b/mod_muc_markers/mod_muc_markers.lua Thu Jul 02 12:07:08 2020 +0100 @@ -95,3 +95,7 @@ function get_user_read_marker(user_jid, room_jid) return muc_marker_map_store:get(user_jid, room_jid); end + +function is_markable(stanza) + return not not stanza:get_child("markable", xmlns_markers); +end