From f79a07eff4a574bf2f28f63e4b3d8ca0ed96542f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Fri, 13 Oct 2023 13:39:17 +0200 Subject: [PATCH] enable deagregation --- WebAPI/Controllers/LayersController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WebAPI/Controllers/LayersController.cs b/WebAPI/Controllers/LayersController.cs index 02b575a..0b135b7 100644 --- a/WebAPI/Controllers/LayersController.cs +++ b/WebAPI/Controllers/LayersController.cs @@ -255,8 +255,8 @@ namespace WebAPI.Controllers cp.process(sourceLayer, processWorker?.Id); break; case "Deaggregation": - //DeaggregationProcessor dp = new DeaggregationProcessor(db, googleSheetValues, this); - //dp.process(sourceLayer, processWorker?.Id); + DeaggregationProcessor dp = new DeaggregationProcessor(db, googleSheetValues, this); + dp.process(sourceLayer, processWorker?.Id); break; }