dev #48

Merged
fede merged 88 commits from dev into main 2025-01-24 04:16:01 -03:00
Showing only changes of commit 07cfec619c - Show all commits

View File

@@ -29,6 +29,7 @@ public class NotificacionesController: ControllerBase {
noti.AddFirst(dto);
});
return Ok(noti);
}
@@ -76,7 +77,6 @@ public class NotificacionesController: ControllerBase {
.Build();
var ret = RepositorioNotificaciones.Singleton.AltaNotificacion(noti);
return ret?
Ok(new {message = "Se envio la notificacion"}):BadRequest(new {message = "Fallo al intentar guardar la notificacion"});
}