This commit is contained in:
2026-03-05 15:40:16 -05:00
parent fd81f1eaf7
commit 6cd24aba7f
18 changed files with 489 additions and 37 deletions

View File

@@ -195,6 +195,9 @@ app.get('/medical/resources/list', function (req,res) {
app.get('/medical/events/calendar', function (req,res) {
res.sendFile(path + "index.html");
});
app.get('/medical/template', function (req,res) {
res.sendFile(path + "index.html");
});
app.get('/medical/resources', function (req,res) {
res.sendFile(path + "index.html");
});
@@ -252,6 +255,7 @@ require("./app/routes/carousel.routes")(app);
require("./app/routes/fingerprint-attendance.routes")(app);
require("./app/routes/daily-routes-template.routes")(app);
require("./app/routes/msg-custom-template.routes")(app);
require("./app/routes/template-file.route")(app);
require("./app/scheduler/reminderScheduler");