8fba53b732d9c74801bdbed6124d0f599d2401f0
[project/luci.git] / applications / luci-voice-diag / luasrc / controller / luci_voice / luci_voice_diag.lua
1 --[[
2
3 Luci Voice Core
4 (c) 2009 Daniel Dickinson
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 ]]--
13
14 module("luci.controller.luci_voice.luci_voice_diag", package.seeall)
15
16 function index()
17 local e
18
19 e = entry({"admin", "voice", "diag"}, template("luci_voice/diag_index"), _("Diagnostics"), 90)
20 e.index = true
21 e.i18n = "voice_diag"
22 e.dependent = true
23 end