summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-fwknopd/luasrc/model
diff options
context:
space:
mode:
authorJonathan Bennett <JBennett@incomsystems.biz>2015-05-17 22:33:30 -0500
committerJonathan Bennett <JBennett@incomsystems.biz>2015-05-20 13:02:11 -0500
commit4ccb221f6d3455abb66e93aafdd5b6ea65859a70 (patch)
treefbd010b45c28cd90112539ce30a34ba883d656a8 /applications/luci-app-fwknopd/luasrc/model
parentfd130d0ce7f52480ccc8bd600fb66de1b36fdbb9 (diff)
luci-app-fwknopd: Add qr code support
Signed-off-by: Jonathan Bennett <jbennett@incomsystems.biz>
Diffstat (limited to 'applications/luci-app-fwknopd/luasrc/model')
-rw-r--r--applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua b/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua
index 8a454dd58..84a1a23d8 100644
--- a/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua
+++ b/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua
@@ -6,6 +6,9 @@ m = Map("fwknopd", translate("Firewall Knock Operator"))
s = m:section(TypedSection, "global", translate("Enable Uci/Luci control")) -- Set uci control on or off
s.anonymous=true
s:option(Flag, "uci_enabled", translate("Enable config overwrite"), translate("When unchecked, the config files in /etc/fwknopd will be used as is, ignoring any settings here."))
+qr = s:option(DummyValue, "note0", "dummy")
+qr.template = "fwknopd-qr"
+qr:depends("uci_enabled", "1")
s = m:section(TypedSection, "access", translate("access.conf stanzas")) -- set the access.conf settings
s.anonymous=true