summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-lqtapifoss/luasrc/controller/lqtapifoss.lua
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-02-14 15:17:14 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-02-14 15:17:14 +0000
commitdfd302bb1c2f0557921dcfb4330dbeaaa4ae427c (patch)
tree69bd9fd4ebbacd597663fff1914693d5481da34b /applications/luci-lqtapifoss/luasrc/controller/lqtapifoss.lua
parent63a75c6ea924120273f27a297fae4978ab81d83f (diff)
applications: drop luci-lqtapifoss
Diffstat (limited to 'applications/luci-lqtapifoss/luasrc/controller/lqtapifoss.lua')
-rw-r--r--applications/luci-lqtapifoss/luasrc/controller/lqtapifoss.lua30
1 files changed, 0 insertions, 30 deletions
diff --git a/applications/luci-lqtapifoss/luasrc/controller/lqtapifoss.lua b/applications/luci-lqtapifoss/luasrc/controller/lqtapifoss.lua
deleted file mode 100644
index 323f8a7c41..0000000000
--- a/applications/luci-lqtapifoss/luasrc/controller/lqtapifoss.lua
+++ /dev/null
@@ -1,30 +0,0 @@
---[[
-LuCI - Lua Configuration Interface
-
-Copyright 2019 John Crispin <blogic@openwrt.org>
-
-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
-
-]]--
-
-module("luci.controller.lqtapifoss", package.seeall)
-
-function index()
- if not nixio.fs.access("/etc/config/telephony") then
- return
- end
-
- local e
-
- e = entry({"admin", "telephony"}, template("luci_lqvoip/index") , _("VoIP"), 90)
- e.index = true
- e.i18n = "telephony"
-
- --entry({"admin", "telephony", "config"}, cbi("luci_lqvoip/config") , _("Config"), 10)
- entry({"admin", "telephony", "account"}, cbi("luci_lqvoip/account") , _("Account"), 20)
- entry({"admin", "telephony", "contact"}, cbi("luci_lqvoip/contact") , _("Contacts"), 30)
-end