comparison mod_muc_markers/mod_muc_markers.lua @ 4056:554f64c8d0c0

mod_muc_markers: Expose is_markable utility function to other modules
author Matthew Wild <mwild1@gmail.com>
date Thu, 02 Jul 2020 12:07:08 +0100
parents 7b6bcb91493e
children 92152437ecfe
comparison
equal deleted inserted replaced
4055:cf1304ad2336 4056:554f64c8d0c0
93 --luacheck: ignore 131 93 --luacheck: ignore 131
94 94
95 function get_user_read_marker(user_jid, room_jid) 95 function get_user_read_marker(user_jid, room_jid)
96 return muc_marker_map_store:get(user_jid, room_jid); 96 return muc_marker_map_store:get(user_jid, room_jid);
97 end 97 end
98
99 function is_markable(stanza)
100 return not not stanza:get_child("markable", xmlns_markers);
101 end