From 02a05231d163a37b65b1177dcb529aa92f7c6b7b Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 26 Jul 2026 19:40:11 +0100 Subject: [PATCH] Added support for tags in new host creation by including tags from the request body in the host object. This enhancement improves the data structure for host management. --- src/services/management/hosts.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/services/management/hosts.js b/src/services/management/hosts.js index 817705d..c98cf1b 100644 --- a/src/services/management/hosts.js +++ b/src/services/management/hosts.js @@ -142,6 +142,7 @@ export const newHostRouteHandler = async (req, res) => { updatedAt: new Date(), name: req.body.name, active: req.body.active, + tags: req.body.tags, }; const result = await newObject({ model: hostModel,