Add luci-app-dynapoint to repo LuCI Support for DynaPoint Dynapoint allows dynamic access point creation and deletion depending on changes of certain network conditions. More information: https://github.com/thuehn/dynapoint Signed-off-by: Tobias Ilte <tobias.ilte@campus.tu-berlin.de>
9 lines
230 B
Lua
9 lines
230 B
Lua
module("luci.controller.dynapoint", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/dynapoint") then
|
|
return
|
|
end
|
|
entry({"admin", "services", "dynapoint"}, cbi("dynapoint"), _("DynaPoint"))
|
|
end
|
|
|