Globally reduce copyright headers
[project/luci.git] / applications / luci-app-voice-core / luasrc / controller / luci_voice.lua
1 -- Copyright 2009 Daniel Dickinson
2 -- Licensed to the public under the Apache License 2.0.
3
4 module("luci.controller.luci_voice", package.seeall)
5
6 function index()
7 local e
8
9 e = entry({"admin", "voice"}, template("luci_voice/index") , _("Voice"), 90)
10 e.index = true
11
12 e = entry({"mini", "voice"}, template("luci_voice/index"), _("Voice"), 90)
13 e.index = true
14
15 e = entry({"mini", "voice", "phones"}, template("luci_voice/phone_index"), _("Phones"), 90)
16 e.index = true
17
18 e = entry({"admin", "voice", "phones"}, template("luci_voice/phone_index"), _("Phones"), 90)
19 e.index = true
20
21 end