From c250f3b1b8b42652cd2f3b3f19ce36624e384ff0 Mon Sep 17 00:00:00 2001 From: Rafael de Camargo Date: Wed, 17 Jul 2019 18:32:16 -0300 Subject: Add option to clone filters on project duplication * Fixed missing metadata option from project "create from" * Added option to clone project custom filters * Added append option to custom field tests * Added a test that uses the "append" option * Fixed disabled swimlane duplication error with Postgresql --- app/Model/SwimlaneModel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Model/SwimlaneModel.php') diff --git a/app/Model/SwimlaneModel.php b/app/Model/SwimlaneModel.php index 2b3be912..0d204ae2 100644 --- a/app/Model/SwimlaneModel.php +++ b/app/Model/SwimlaneModel.php @@ -443,7 +443,7 @@ class SwimlaneModel extends Base 'name' => $swimlane['name'], 'description' => $swimlane['description'], 'position' => $swimlane['position'], - 'is_active' => $swimlane['is_active'], + 'is_active' => $swimlane['is_active'] ? self::ACTIVE : self::INACTIVE, // Avoid SQL error with Postgres 'project_id' => $projectDstId, ); -- cgit v1.2.3