mirror of https://github.com/aredn/aredn.git
Remove vestigial getServicesBy* methods (#952)
* Remove vestigial getServicesBy* methods getServicesByNode is only a dummy method. getServicesByService doesn't even exist. Remove the last remaining references to them from cgi-bin/api, and remove the last traces of getServicesByNode from aredn/olsr.lua Fixes #948 Fixes #949 * Bump API version Breaking change, removing parameters services=bynode,byservice
This commit is contained in:
parent
84ea30184c
commit
a2e9e3054c
|
@ -154,8 +154,4 @@ function model.getCurrentNeighbors(RFinfo)
|
||||||
return info
|
return info
|
||||||
end
|
end
|
||||||
|
|
||||||
function model.getServicesByNode(node)
|
|
||||||
return {}
|
|
||||||
end
|
|
||||||
|
|
||||||
return model
|
return model
|
||||||
|
|
|
@ -46,7 +46,7 @@ local json = require("luci.jsonc")
|
||||||
require("iwinfo")
|
require("iwinfo")
|
||||||
local nettools = require("aredn.nettools")
|
local nettools = require("aredn.nettools")
|
||||||
|
|
||||||
local API_VERSION="1.5"
|
local API_VERSION="1.6"
|
||||||
|
|
||||||
-- Function extensions
|
-- Function extensions
|
||||||
os.capture = capture
|
os.capture = capture
|
||||||
|
@ -426,10 +426,6 @@ for page, comps in pairs(qsset) do
|
||||||
for i,comp in pairs(comps:split(',')) do
|
for i,comp in pairs(comps:split(',')) do
|
||||||
if comp=="sysinfo" then
|
if comp=="sysinfo" then
|
||||||
info['pages'][page][comp]=getSysinfo()
|
info['pages'][page][comp]=getSysinfo()
|
||||||
elseif comp=="bynode" then
|
|
||||||
info['pages'][page][comp]=getServicesByNode()
|
|
||||||
elseif comp=="byservice" then
|
|
||||||
info['pages'][page][comp]=getServicesByService()
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
elseif page=="chart" then
|
elseif page=="chart" then
|
||||||
|
|
Loading…
Reference in New Issue