This commit is contained in:
Lizandro Guarnizo
2026-05-16 15:17:49 -05:00
parent 9820405475
commit f5eef70e09
4 changed files with 184 additions and 8 deletions
+5
View File
@@ -29,4 +29,9 @@ func PortalRoutes(app fiber.Router) {
// Descargas
portal.Get("/entregables/:id/download", controllers.PortalDownloadEntregable)
portal.Get("/facturas/:id/download", controllers.PortalDownloadFactura)
// Notificaciones in-app del portal user
portal.Get("/mis-notifs", controllers.PortalGetMisNotifs)
portal.Put("/mis-notifs/:id/leida", controllers.PortalMarcarNotifLeida)
portal.Post("/mis-notifs/marcar-todas", controllers.PortalMarcarTodasLeidas)
}