HOR-3701
This commit is contained in:
@@ -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
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user