forked from UKSOURCE/cms.hailearning.edu.vn
feat: Implement admin management for FAQ, Testimonial, and Video Gallery sections with new controllers, views, and routing.
This commit is contained in:
@@ -175,4 +175,14 @@ router.get("/api/service-slugs", serviceController.getServiceSlugs);
|
||||
router.get("/api/visa", visaController.api);
|
||||
router.get("/api/visa/country", visaController.apiCountries);
|
||||
|
||||
// Testimonials API
|
||||
const testimonialController = require("../controllers/testimonialController");
|
||||
router.get("/api/testimonials", testimonialController.api);
|
||||
|
||||
// Video Gallery API
|
||||
const videoGalleryController = require("../controllers/videoGalleryController");
|
||||
router.get("/api/video-gallery", videoGalleryController.api);
|
||||
|
||||
module.exports = router;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user