summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2020-10-30 21:26:22 +0100
committerGitHub <noreply@github.com>2020-10-30 21:26:22 +0100
commit31e73779fe019bb5d1dde50e944320457d0983c2 (patch)
tree37b6426e62541a52d8599f800b31905f9ea1ff67 /applications
parent08450007f06903258fd46234a4185db1510b1e86 (diff)
parent596c2919f6b204983b3d3623204281565b319933 (diff)
Merge pull request #4421 from etactica/mos-nlocal-only-master
master: mosquitto: support notifications_local_only flag
Diffstat (limited to 'applications')
-rw-r--r--applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua b/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua
index 0b0467e9a..3ba88e5ac 100644
--- a/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua
+++ b/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua
@@ -161,6 +161,7 @@ OptionalFlag(s, "cleansession", _("Clean session"))
OptionalFlag(s, "notifications", _("notifications"),
_("Attempt to notify the local and remote broker of connection status, defaults to $SYS/broker/connections/<clientid>/state"))
s:option(Value, "notification_topic", _("Topic to use for local+remote remote for notifications.")).optional = true
+OptionalFlag(s, "notification_local_only", _("Notifications local only"), _("Bridge connection states should only be published locally"))
s:option(Value, "remote_clientid", _("Client id to use on remote end of this bridge connection")).optional = true
s:option(Value, "local_clientid", _("Client id to use locally. Important when bridging to yourself")).optional = true