feat: implement create functionality for WapServers across server, sysadmin, and CLI layers

This commit is contained in:
2026-07-30 17:45:45 -03:00
parent 146770a55d
commit cb830fcf01
12 changed files with 167 additions and 16 deletions
+1
View File
@@ -5,6 +5,7 @@ const router = Router();
const wapController = new WapController();
router.post("/paginate", wapController.getServers);
router.post("/create", wapController.createServer);
router.post("/update", wapController.updateServer);
router.post("/audit", wapController.auditServer);
router.post("/recalculate-count", wapController.recalculateCount);