Changed get languages rest endpoint to be public.
This commit is contained in:
davidcallizaya
2017-05-30 15:23:27 -04:00
parent 91b38329f8
commit 7a5cd2f347

View File

@@ -7,7 +7,6 @@ use \Luracast\Restler\RestException;
/** /**
* Pmtable Api Controller * Pmtable Api Controller
* *
* @protected
*/ */
class System extends Api class System extends Api
{ {
@@ -18,6 +17,7 @@ class System extends Api
* @copyright Colosa - Bolivia * @copyright Colosa - Bolivia
* *
* @url GET /db-engines * @url GET /db-engines
* @protected
*/ */
public function doGetDataBaseEngines() public function doGetDataBaseEngines()
{ {
@@ -39,6 +39,7 @@ class System extends Api
* @copyright Colosa - Bolivia * @copyright Colosa - Bolivia
* *
* @url GET /counters-lists * @url GET /counters-lists
* @protected
*/ */
public function doGetCountersLists() public function doGetCountersLists()
{ {
@@ -58,6 +59,7 @@ class System extends Api
* @category HOR-3209,PROD-181 * @category HOR-3209,PROD-181
* @return array * @return array
* @url GET /languages * @url GET /languages
* @public
*/ */
public function doGetLanguages() public function doGetLanguages()
{ {
@@ -77,6 +79,7 @@ class System extends Api
* @copyright Colosa - Bolivia * @copyright Colosa - Bolivia
* *
* @url GET /enabled-features * @url GET /enabled-features
* @protected
*/ */
public function doGetEnabledFeatures() public function doGetEnabledFeatures()
{ {