contact: change route name

This commit is contained in:
2026-06-03 02:05:46 +07:00
parent 31d30434d6
commit 621cda7224
14 changed files with 38 additions and 38 deletions
+1 -1
View File
@@ -4,6 +4,6 @@ const router = express.Router();
const contactController = require("../controllers/contactController");
// Contact form submission route - middleware is now integrated in the controller
router.post("/submit", contactController.submitContactForm);
router.post("/contactSubmit", contactController.submitContactForm);
module.exports = router;