From f2ecfc7ad547015e395282bf2b1d96bc8f3f64d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Wed, 11 Oct 2023 16:54:29 +0200 Subject: [PATCH] Enable copy processor --- 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 c7d920c..5d1547f 100644 --- a/WebAPI/Controllers/LayersController.cs +++ b/WebAPI/Controllers/LayersController.cs @@ -251,8 +251,8 @@ namespace WebAPI.Controllers switch (processType) { case "Copy": - //CopyProcessor cp = new CopyProcessor(db, googleSheetValues, this); - //cp.process(sourceLayer, processWorker?.Id); + CopyProcessor cp = new CopyProcessor(db, googleSheetValues, this); + cp.process(sourceLayer, processWorker?.Id); break; case "Deaggregation": DeaggregationProcessor dp = new DeaggregationProcessor(db, googleSheetValues, this);