HOR-1513 Templates/Public Files: Muestra un mensaje de error al momento de abrir y crear

This commit is contained in:
Ronald Q
2016-07-26 14:15:31 -04:00
parent 057bdbe356
commit d452f79e25

View File

@@ -13,8 +13,8 @@ class FilesManager extends Api
{ {
/** /**
* @param string $prj_uid {@min 32} {@max 32} * @param string $prj_uid {@min 32} {@max 32}
* @param string $path * @param string $path {@from query}
* @param string $get_content * @param bool $get_content {@from query}
* *
* @url GET /:prj_uid/file-manager * @url GET /:prj_uid/file-manager
*/ */
@@ -176,12 +176,12 @@ class FilesManager extends Api
class ProcessFilesManagerStructurePost class ProcessFilesManagerStructurePost
{ /** { /**
* @var string {@from body} * @var string {@from body} {@required false}
*/ */
public $prf_filename; public $prf_filename;
/** /**
* @var string {@from body} * @var string {@from body} {@required false}
*/ */
public $prf_path; public $prf_path;
} }
@@ -189,17 +189,17 @@ class ProcessFilesManagerStructurePost
class ProcessFilesManagerStructure class ProcessFilesManagerStructure
{ {
/** /**
* @var string {@from body} * @var string {@from body} {@required false}
*/ */
public $prf_filename; public $prf_filename;
/** /**
* @var string {@from body} * @var string {@from body} {@required false}
*/ */
public $prf_path; public $prf_path;
/** /**
* @var string {@from body} * @var string {@from body} {@required false}
*/ */
public $prf_content; public $prf_content;
} }