aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/mod_pubsub/pubsub.lib.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua
index 99b6ba63..132a4972 100644
--- a/plugins/mod_pubsub/pubsub.lib.lua
+++ b/plugins/mod_pubsub/pubsub.lib.lua
@@ -101,6 +101,7 @@ local node_config_form = dataform {
type = "boolean";
label = "Whether to deliver payloads with event notifications";
name = "pubsub#deliver_payloads";
+ value = true;
};
{
type = "list-single";
@@ -115,11 +116,13 @@ local node_config_form = dataform {
type = "boolean";
label = "Whether to notify subscribers when the node is deleted";
name = "pubsub#notify_delete";
+ value = true;
};
{
type = "boolean";
label = "Whether to notify subscribers when items are removed from the node";
name = "pubsub#notify_retract";
+ value = true;
};
};