Added centralized error code to API

Former-commit-id: 0400f0047276d08182477b4d4c59d42c665189c7
This commit is contained in:
Fermin 2019-01-23 19:21:02 +01:00
parent 25d4239ef9
commit 48eea4ab87
1 changed files with 4 additions and 0 deletions

View File

@ -100,6 +100,10 @@ function returnError($typeError, $returnType = 'string') {
returnData($returnType,
array('type' => 'string', 'data' => __('No data to show.')));
break;
case 'centralized':
returnData($returnType,
array('type' => 'string', 'data' => __('This console is not manager of this environment, please manage this feature from centralized manager console (Metaconsole).')));
break;
default:
returnData("string",
array('type' => 'string', 'data' => __($returnType)));