From fe1c3488eb47534be75f29c199096ac313b963a4 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 16 Aug 2018 14:42:36 +0200 Subject: mod_pubsub: Make notification of node deletion configurable --- plugins/mod_pubsub/pubsub.lib.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index b607be99..5f6acab5 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -111,6 +111,11 @@ local node_config_form = dataform { { label = "Messages of type headline", value = "headline", default = true }, }; }; + { + type = "boolean"; + label = "Whether to notify subscribers when the node is deleted"; + name = "pubsub#notify_delete"; + }; }; local subscribe_options_form = dataform { @@ -156,6 +161,7 @@ local config_field_map = { access_model = "pubsub#access_model"; publish_model = "pubsub#publish_model"; notify_items = "pubsub#deliver_notifications"; + notify_delete = "pubsub#notify_delete"; }; local reverse_config_field_map = {}; for k, v in pairs(config_field_map) do reverse_config_field_map[v] = k; end @@ -172,6 +178,7 @@ local function config_to_xep0060(node_config) ["pubsub#access_model"] = node_config["access_model"]; ["pubsub#publish_model"] = node_config["publish_model"]; ["pubsub#deliver_notifications"] = node_config["notify_items"]; + ["pubsub#notify_delete"] = node_config["notify_delete"]; } end -- cgit v1.2.3