diff options
author | Jo-Philipp Wich <jo@mein.io> | 2023-07-27 00:47:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-27 00:47:40 +0200 |
commit | 8fe85d9bacfe5ee4c3f3ed72d651151b5ebd8771 (patch) | |
tree | 69c63832da2dd2d4d11c3a612cc90ee776984585 | |
parent | 7cded1f8bbbc85ea6ca57c515b9988130e85726f (diff) | |
parent | 96d4c1e9defe56eba3a5ebc372736b4869967dcf (diff) |
Merge pull request #6484 from dos1/mosq
luci-app-mosquitto: fixes for notification options
-rw-r--r-- | applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua b/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua index 66591f0bed..31d05e32f8 100644 --- a/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua +++ b/applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua @@ -160,9 +160,9 @@ topics = s:option(DynamicList, "topic", _("topic"), 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")) + _("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")) +OptionalFlag(s, "notifications_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 |