index.lua 307 B

12345678910111213
  1. module("luci.controller.freifunk.index", package.seeall)
  2. function index()
  3. local uci_state = luci.model.uci.cursor_state()
  4. if uci_state:get_first("config_mode", "wizard", "running", "0") == "1" then
  5. local root = node()
  6. root.target = alias("wizard", "welcome")
  7. root.index = true
  8. end
  9. end