# HG changeset patch # User Kim Alvefur # Date 1534424701 -7200 # Node ID 60f163e7a7a704751cf59c81b1fe0b06e2451c9e # Parent 9fbddb80803ba66f112be9e221b228a50aa6c85f mod_pubsub: Specify defaults for notification settings diff -r 9fbddb80803b -r 60f163e7a7a7 plugins/mod_pubsub/pubsub.lib.lua --- a/plugins/mod_pubsub/pubsub.lib.lua Thu Aug 16 14:44:09 2018 +0200 +++ b/plugins/mod_pubsub/pubsub.lib.lua Thu Aug 16 15:05:01 2018 +0200 @@ -101,6 +101,7 @@ type = "boolean"; label = "Whether to deliver payloads with event notifications"; name = "pubsub#deliver_payloads"; + value = true; }; { type = "list-single"; @@ -115,11 +116,13 @@ 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; }; };