mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Arreglado el inscribir un nuevo usuario
This commit is contained in:
@ -11,8 +11,8 @@ class Maquina extends \CodeIgniter\Entity\Entity
|
||||
"is_padre" => false,
|
||||
"tipo" => null,
|
||||
"velocidad" => 0.0,
|
||||
"ancho" => null,
|
||||
"alto" => null,
|
||||
"ancho" => 100.0,
|
||||
"alto" => 100.0,
|
||||
"ancho_impresion" => 0.0,
|
||||
"alto_impresion" => 0.0,
|
||||
"alto_click" => 0.0,
|
||||
@ -27,10 +27,10 @@ class Maquina extends \CodeIgniter\Entity\Entity
|
||||
"precio_tinta_color" => 0.0,
|
||||
"velocidad_corte" => 0.0,
|
||||
"precio_hora_corte" => 0.0,
|
||||
"metrosxminuto" => null,
|
||||
"metrosxminuto" => 0.0,
|
||||
"forzar_num_formas_horizontales_portada" => null,
|
||||
"forzar_num_formas_verticales_portada" => null,
|
||||
"observaciones" => null,
|
||||
"observaciones" => "",
|
||||
"is_deleted" => 0,
|
||||
"created_at" => null,
|
||||
"updated_at" => null,
|
||||
|
||||
@ -7,15 +7,14 @@ class UserEntity extends \CodeIgniter\Entity\Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"id_user" => null,
|
||||
"group" => null,
|
||||
"first_name" => null,
|
||||
"last_name" => null,
|
||||
"date_birth" => null,
|
||||
"address" => null,
|
||||
"city" => null,
|
||||
"state" => null,
|
||||
"country" => null,
|
||||
"zip_code" => null,
|
||||
"address" => "",
|
||||
"city" => "",
|
||||
"state" => "",
|
||||
"country" => "",
|
||||
"zip_code" => "",
|
||||
"mobile" => null,
|
||||
"email" => null,
|
||||
"password" => null,
|
||||
@ -24,8 +23,8 @@ class UserEntity extends \CodeIgniter\Entity\Entity
|
||||
"picture" => "/assets/img/default-user.png",
|
||||
"language" => null,
|
||||
"tfa" => false,
|
||||
"tfa_secret" => null,
|
||||
"tfa_code" => null,
|
||||
"tfa_secret" => "",
|
||||
"tfa_code" => "",
|
||||
"blocked" => null,
|
||||
"email_confirmed" => 0,
|
||||
"token" => null,
|
||||
|
||||
Reference in New Issue
Block a user