ntopng/scripts/plugins/endpoints/shell_alert_endpoint/http_lint.lua
Matteo Biscosi cfac78e89e
Fixes #4416 Implement recipient/endpoint shell script (#4688)
* Fixes #4416 implement shell script endpoint

* removed debugging code

* Removed for windows env
2020-11-09 16:35:39 +01:00

25 lines
637 B
Lua

--
-- (C) 2020 - ntop.org
--
--
-- Place here the checks for parameters used by this plugins
-- In essence it extends (and references) checks present in
-- scripts/lua/modules/http_lint.lua
--
local script = {}
-- ##############################################
-- @brief Called by the main http_lint module to load additional parameters.
-- @params http_lint a reference to the scripts/lua/modules/http_lint.lua module
-- @return a (possibly empty) table with parameter_name -> validator mappings
function script.getAdditionalParameters(http_lint)
return {}
end
-- ##############################################
return(script)