2015-01-16 22:38:38 +00:00
|
|
|
-- Copyright 2009 Daniel Dickinson
|
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2009-07-17 20:27:05 +00:00
|
|
|
|
|
|
|
module("luci.controller.luci_diag", package.seeall)
|
|
|
|
|
|
|
|
function index()
|
2011-08-12 13:16:27 +00:00
|
|
|
local e
|
|
|
|
|
|
|
|
e = entry({"admin", "network", "diag_config"}, template("diag/network_config_index") , _("Configure Diagnostics"), 120)
|
|
|
|
e.index = true
|
|
|
|
e.dependent = true
|
|
|
|
|
|
|
|
e = entry({"mini", "diag"}, template("diag/index"), _("Diagnostics"), 120)
|
|
|
|
e.index = true
|
|
|
|
e.dependent = true
|
2009-07-17 20:27:05 +00:00
|
|
|
end
|