From 64f1b4bb7530a750b1062cecff06d3b99985c69e Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Thu, 22 Aug 2024 17:05:50 +0800 Subject: [PATCH] * [task#126383,doing,0.1h] Change the config of page. --- module/tutorial/model.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/module/tutorial/model.php b/module/tutorial/model.php index 98e8d9b857..ceef45f03e 100644 --- a/module/tutorial/model.php +++ b/module/tutorial/model.php @@ -593,7 +593,7 @@ class tutorialModel extends model $build->id = 1; $build->project = 2; $build->product = 1; - $build->branch = 0; + $build->branch = '0'; $build->execution = 3; $build->builds = ''; $build->name = 'Test build'; @@ -610,7 +610,10 @@ class tutorialModel extends model $build->deleted = 0; $build->executionName = 'Test execution'; $build->productName = 'Test product'; + $build->productType = 'normal'; $build->allBugs = '1'; + $build->allStories = '1'; + $build->files = array(); return $build; }