implemented step 09 by Gemini
- added 3. step of wizard with smart questions
This commit is contained in:
@ -156,6 +156,14 @@ class ProjectActions
|
||||
$projectData['wizard_data']['contact'] = $data['contact'];
|
||||
break;
|
||||
|
||||
case 3:
|
||||
if (!isset($data['services']) || !isset($data['smart_answers'])) {
|
||||
throw new Exception("Missing services or smart_answers data.", 400);
|
||||
}
|
||||
$projectData['wizard_data']['services'] = $data['services'];
|
||||
$projectData['wizard_data']['smart_answers'] = $data['smart_answers'];
|
||||
break;
|
||||
|
||||
// More steps will be added later
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user