mirror of
https://github.com/kenzok8/openwrt-packages.git
synced 2025-05-01 14:40:35 +08:00
11 lines
317 B
Lua
11 lines
317 B
Lua
module("luci.controller.design-config", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access('/www/luci-static/design/css/style.css') then
|
|
return
|
|
end
|
|
|
|
local page = entry({"admin", "system", "design-config"}, form("design-config"), _("Design Config"), 90)
|
|
page.acl_depends = { "luci-app-design-config" }
|
|
end
|