forked from qwerty/milfs
mejoras en api rest
This commit is contained in:
parent
61b68d6bf9
commit
60ee7b31c8
1
rest/index.php
Normal file
1
rest/index.php
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
rest/src/index.php
Normal file
1
rest/src/index.php
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
@ -10,7 +10,7 @@ $app ->get('/api/proyectos', function(Request $request, Response $response){
|
|||||||
|
|
||||||
|
|
||||||
$array = aplicaciones_listado("",'','array','');
|
$array = aplicaciones_listado("",'','array','');
|
||||||
echo json_encode($array);
|
echo json_encode($array,JSON_NUMERIC_CHECK|JSON_PRETTY_PRINT);
|
||||||
|
|
||||||
});
|
});
|
||||||
/// aplicaciones por proyecto
|
/// aplicaciones por proyecto
|
||||||
@ -18,7 +18,7 @@ $app ->get('/api/proyectos/{id}', function(Request $request, Response $response)
|
|||||||
$id= $request->getAttribute('id');
|
$id= $request->getAttribute('id');
|
||||||
|
|
||||||
$array = empresa_datos("$id",'array');
|
$array = empresa_datos("$id",'array');
|
||||||
echo json_encode($array);
|
echo json_encode($array,JSON_NUMERIC_CHECK|JSON_PRETTY_PRINT);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ $app ->get('/api/proyectos/{id}/aplicaciones', function(Request $request, Respon
|
|||||||
$id= $request->getAttribute('id');
|
$id= $request->getAttribute('id');
|
||||||
|
|
||||||
$array = aplicaciones_listado("$id",'','array','');
|
$array = aplicaciones_listado("$id",'','array','');
|
||||||
echo json_encode($array);
|
echo json_encode($array,JSON_NUMERIC_CHECK|JSON_PRETTY_PRINT);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user