mod_external_services: Validate items as they are added

This commit is contained in:
Kim Alvefur 2021-06-21 22:41:59 +02:00
parent f53ff863f0
commit 44675f7dbf

View file

@ -107,6 +107,10 @@ function module.load()
end
end
module:handle_items("external_service", function(added)
prepare(added.item);
end, module.load);
-- Ensure only valid items are added in events
local services_mt = {
__index = getmetatable(array()).__index;