Skip to content
Snippets Groups Projects

Feature/ajustes visuales backend

Merged Luciano Cassettai requested to merge feature/ajustes_visuales_backend into develop
9 files
+ 101
59
Compare changes
  • Side-by-side
  • Inline
Files
9
@@ -110,6 +110,10 @@ class registros implements SIUToba\rest\lib\modelable
'documentos' => array('type'=> 'array', 'items'=> $documento),
);
$fechaCreacion = array(
'fecha_creacion' => array('type' => 'string')
);
$registroEdit = array(
'contacto' => array('type'=> 'object', 'properties' => $contacto),
'datos_personales' => array('type'=> 'object', 'properties' => $personal),
@@ -140,6 +144,7 @@ class registros implements SIUToba\rest\lib\modelable
$registro = array_merge(
$registroEdit,
$fechaCreacion,
array(
'identificador' => array(
'type' => 'string',
@@ -288,7 +293,8 @@ class registros implements SIUToba\rest\lib\modelable
'Registro' => $registro,
'RegistroEdit' => $registroEdit,
'RegistroMovimientos' => $registroMovimientos,
'AprobarRegistro' => $aprobarRegistro
'AprobarRegistro' => $aprobarRegistro,
'FechaCreacion' => $fechaCreacion
);
}
Loading