implemented step 09 by Gemini

- added 3. step of wizard with smart questions
This commit is contained in:
2026-06-14 07:41:52 +02:00
parent aeeaddd3bc
commit 991ff9de00
5 changed files with 232 additions and 4 deletions

View File

@ -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
}