diff options
author | Patrick Grimm <patrick@lunatiki.de> | 2011-01-09 17:18:07 +0000 |
---|---|---|
committer | Patrick Grimm <patrick@lunatiki.de> | 2011-01-09 17:18:07 +0000 |
commit | 3010388ce937e56bf08380a5ffa118f61d148165 (patch) | |
tree | 1992295ef387dc6188e62cdabf066ab2f057be00 /applications/luci-ffwizard/luasrc/controller | |
parent | ea7a4bee1803813ea5fd76162c9ae9d3ac4671c8 (diff) |
applications/luci-ffwizard: initial
Diffstat (limited to 'applications/luci-ffwizard/luasrc/controller')
-rw-r--r-- | applications/luci-ffwizard/luasrc/controller/ffwizard.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/applications/luci-ffwizard/luasrc/controller/ffwizard.lua b/applications/luci-ffwizard/luasrc/controller/ffwizard.lua new file mode 100644 index 0000000000..428962d4be --- /dev/null +++ b/applications/luci-ffwizard/luasrc/controller/ffwizard.lua @@ -0,0 +1,23 @@ +--[[ +LuCI - Lua Configuration Interface + +Copyright 2008 Steven Barth <steven@midlink.org> +Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net> +Copyright 2011 Patrick Grimm <patrick@pberg.freifunk.net> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ + +]]-- + +module "luci.controller.ffwizard" + +function index() + entry({"admin", "freifunk", "ffwizard"}, form("ffwizard"), "Freifunkassistent", 1) + assign({"mini", "freifunk", "ffwizard"}, {"admin", "freifunk", "ffwizard"}, "Freifunkassistent", 1) +end
\ No newline at end of file |