Mercurial > prosody-modules
diff mod_cloud_notify/mod_cloud_notify.lua @ 2198:eb53a830864c
mod_cloud_notify: default false for sending body and sender
author | Chris Ballinger <chrisballinger@gmail.com> |
---|---|
date | Thu, 02 Jun 2016 14:07:22 -0700 |
parents | 218a3d3f7f97 |
children | e9e38ae8037f |
line wrap: on
line diff
--- a/mod_cloud_notify/mod_cloud_notify.lua Wed Jun 01 22:33:51 2016 +0200 +++ b/mod_cloud_notify/mod_cloud_notify.lua Thu Jun 02 14:07:22 2016 -0700 @@ -11,8 +11,8 @@ local xmlns_push = "urn:xmpp:push:0"; -- configuration -local include_body = module:get_option("push_notification_with_body", true); -local include_sender = module:get_option("push_notification_with_sender", true); +local include_body = module:get_option("push_notification_with_body", false); +local include_sender = module:get_option("push_notification_with_sender", false); -- For keeping state across reloads local push_enabled = module:shared("push-enabled-users");