mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
MUC: Introduce an event to allow plugins to influence which messages are added to history
This commit is contained in:
parent
c9a4b55656
commit
814f998b90
1 changed files with 5 additions and 2 deletions
|
@ -156,12 +156,15 @@ end, -1);
|
|||
-- Have a single muc-add-history event, so that plugins can mark it
|
||||
-- as handled without stopping other muc-broadcast-message handlers
|
||||
module:hook("muc-broadcast-message", function(event)
|
||||
local historic = event.stanza:get_child("body");
|
||||
if historic then
|
||||
if module:fire_event("muc-message-is-historic", event) then
|
||||
module:fire_event("muc-add-history", event);
|
||||
end
|
||||
end);
|
||||
|
||||
module:hook("muc-message-is-historic", function (event)
|
||||
return event.stanza:get_child("body");
|
||||
end, -1);
|
||||
|
||||
return {
|
||||
set_max_length = set_max_history_length;
|
||||
parse_history = parse_history;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue