Merged in bugfix/HOR-4606 (pull request #6495)

HOR-4606

Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
Gustavo Silva
2018-05-30 21:05:57 +00:00
committed by Julio Cesar Laura Avendaño

View File

@@ -30,12 +30,19 @@ class EmailServer extends Api
} }
/** /**
* Get List of Emails Servers
*
* @url GET * @url GET
* *
* @param string $filter * @param string $filter
* @param int $start * @param int $start
* @param int $limit * @param int $limit
* *
* @return
* @throws RestException
*
* @access protected
* @class AccessControl {@permission PM_SETUP_EMAIL}
*/ */
public function index($filter = null, $start = null, $limit = null) public function index($filter = null, $start = null, $limit = null)
{ {
@@ -67,11 +74,19 @@ class EmailServer extends Api
} }
/** /**
* Get List of Emails Servers
*
* @url GET /paged * @url GET /paged
* *
* @param string $filter * @param string $filter
* @param int $start * @param int $start
* @param int $limit * @param int $limit
*
* @return array
* @throws RestException
*
* @access protected
* @class AccessControl {@permission PM_SETUP_EMAIL}
*/ */
public function doGetPaged($filter = null, $start = null, $limit = null) public function doGetPaged($filter = null, $start = null, $limit = null)
{ {