From 6c90fbd1e76c697a7c6d176683dd610a3d352502 Mon Sep 17 00:00:00 2001 From: Jorge Monroy Date: Wed, 18 Dec 2024 15:16:57 -0400 Subject: [PATCH] [TM-1531] delayed job with data (#619) * [TM-1531] entity record and creator to delayedJOb * [TM-1531] add useer to endpoint * [TM-1531] add entity data for polygons validations * [TM-1531] lint * [TM-1531] add is_cleared * [TM-1531] add to fix polygons entity * [TM-1531] store delayed data for uploads * [TM-1531] send mails when job for upload, check or fix is complete * [TM-1531] send correct user for mails * [TM-1531] modify column name on delayed jobs table * [TM-1531] change attribute name to progress message * [TM-1531] lint fix * [TM-1531] change to is_aknowledged value * [TM-1531] change created_by type, change to is_acknowledge * [TM-1531] add name to delayed jobs * [TM-1531] lint * [TM-1531] remove comment * [TM-1531] correct name for job * [TM-1531] lint --------- Co-authored-by: cesarLima1 --- .../V2/Terrafund/TerrafundCreateGeometryController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/V2/Terrafund/TerrafundCreateGeometryController.php b/app/Http/Controllers/V2/Terrafund/TerrafundCreateGeometryController.php index bddbd5c1..0cc2df51 100755 --- a/app/Http/Controllers/V2/Terrafund/TerrafundCreateGeometryController.php +++ b/app/Http/Controllers/V2/Terrafund/TerrafundCreateGeometryController.php @@ -1254,7 +1254,7 @@ public function runSiteValidationPolygon(Request $request) 'entity_id' => $entity->id, 'entity_type' => get_class($entity), 'is_acknowledged' => false, - 'name' => 'Polygon validation', + 'name' => 'Polygon Validation', ]); $job = new RunSitePolygonsValidationJob($delayedJob->id, $sitePolygonsUuids); dispatch($job); @@ -1284,7 +1284,7 @@ public function runPolygonsValidation(Request $request) 'entity_id' => $entity->id, 'entity_type' => get_class($entity), 'is_acknowledged' => false, - 'name' => 'Polygon validation', + 'name' => 'Polygon Validation', ]); $job = new RunSitePolygonsValidationJob($delayedJob->id, $uuids); dispatch($job);