Software /
code /
prosody
Changeset
9183:8239f24e38df
mod_pubsub: Make notification of node deletion configurable
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 16 Aug 2018 14:42:36 +0200 |
parents | 9182:ec48c02ded0c |
children | 9184:9fbddb80803b |
files | plugins/mod_pubsub/pubsub.lib.lua |
diffstat | 1 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_pubsub/pubsub.lib.lua Thu Aug 16 14:49:42 2018 +0200 +++ b/plugins/mod_pubsub/pubsub.lib.lua Thu Aug 16 14:42:36 2018 +0200 @@ -111,6 +111,11 @@ { 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 @@ 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 @@ ["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