This commit is contained in:
Paula Quispe
2017-08-16 17:30:34 -04:00
parent 5eb34fd3f7
commit daf427b5ae
2 changed files with 291 additions and 45 deletions

View File

@@ -139,6 +139,27 @@ class Project extends Api
}
}
/**
* Bulk actions
* @url POST /bulk
*
* @access protected
* @class AccessControl {@permission PM_FACTORY}
*
* @param array $request_data
* @return array $response
* @throws Exception
*/
public function bulk($request_data)
{
try {
$response = Bpmn::doBulk($request_data);
return $response;
} catch (Exception $e) {
throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage());
}
}
/**
* @url GET /:prj_uid/export/listObjects
*