From 852a962f6fb57765ad10ab8808c4de64072be476 Mon Sep 17 00:00:00 2001 From: mckmonster Date: Fri, 2 Aug 2024 18:06:52 +0200 Subject: [PATCH] Fix erreur to create form --- commands/CreateFormsCommand.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands/CreateFormsCommand.php b/commands/CreateFormsCommand.php index 4323bc9..67796e3 100644 --- a/commands/CreateFormsCommand.php +++ b/commands/CreateFormsCommand.php @@ -17,6 +17,7 @@ class CreateFormsCommand extends Command { protected $wiki; protected $eleveFormId; + protected $yunohostFormId; public function __construct(Wiki &$wiki) { @@ -25,6 +26,7 @@ class CreateFormsCommand extends Command $params = $this->wiki->services->get(ParameterBagInterface::class); $meeo_config = $params->get('meeo'); $this->eleveFormId = $meeo_config['elevesFormId']; + $this->yunohostFormId = $meeo_config['yunohostFormId']; } protected function configure()