Add route to get intent command

This commit is contained in:
Apher 2026-06-28 21:46:48 +00:00
parent bbeb518e66
commit b8af1b716d

View File

@ -15,4 +15,7 @@ const controller = require("../controllers/intent.controller");
// Get all intents
router.get("/", /*[authJwt.verifyToken, authJwt.isAdmin],*/ controller.getAllIntents);
// Get intent command (for now by description)
router.get("/getintentcommand", controller.getIntentCommand);
module.exports = router;