From 2fcd92e05d4297c11b70eed036201a76d532ea0e Mon Sep 17 00:00:00 2001 From: Ruslan Baidan Date: Thu, 23 Mar 2023 11:41:28 +0100 Subject: [PATCH] Added the client update folder config option. --- config/autoload/global.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/autoload/global.php b/config/autoload/global.php index 2fb35ee..39366e9 100755 --- a/config/autoload/global.php +++ b/config/autoload/global.php @@ -125,8 +125,9 @@ return array( ), ), - 'spool_path_create' => $datapath.'/json/create/',//default location path where the json file enabling the creation of the environment of the client should be generated - 'spool_path_delete' => $datapath.'/json/delete/', //default location path where the json file enabling the deletion of the environment of the client should be generated + 'spool_path_create' => $datapath . '/json/create/',//default location path where the json file enabling the creation of the environment of the client should be generated + 'spool_path_delete' => $datapath . '/json/delete/', //default location path where the json file enabling the deletion of the environment of the client should be generated + 'spool_path_update' => $datapath . '/json/update/', // END DOCTRINE CONF );