From b1e6d50f278f21fb3eb8235f1d69aa1dd745f6e3 Mon Sep 17 00:00:00 2001 From: Cyril Rouyer Date: Fri, 10 Mar 2017 11:36:39 +0100 Subject: [PATCH] EVO - config : Allow administrators to customize spool location path for creation/deletion of client's environment - SASS Mode --- config/autoload/global.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/autoload/global.php b/config/autoload/global.php index 85ac35a..647983b 100755 --- a/config/autoload/global.php +++ b/config/autoload/global.php @@ -112,5 +112,9 @@ return array( ), ), ), + + 'spool_path_create' => getcwd() .'/data/json/create/',//default location path where the json file enabling the creation of the environment of the client should be generated + 'spool_path_delete' => getcwd() .'/data/json/delete/', //default location path where the json file enabling the deletion of the environment of the client should be generated + // END DOCTRINE CONF );