Explorar el Código

apiForms: User

master
Florian Eisenmenger hace 2 años
padre
commit
27d6e25125
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      matsen-tool/src/app/_forms/apiForms.ts

+ 3
- 3
matsen-tool/src/app/_forms/apiForms.ts Ver fichero

@@ -217,9 +217,9 @@ export const userForm = new FormGroup({
email: new FormControl(null, [Validators.required, Validators.email]), email: new FormControl(null, [Validators.required, Validators.email]),
firstName: new FormControl(null, [Validators.required]), firstName: new FormControl(null, [Validators.required]),
lastName: new FormControl(null, [Validators.required]), lastName: new FormControl(null, [Validators.required]),
image: new FormControl(null, []),
password: new FormControl(null, []), password: new FormControl(null, []),
active: new FormControl(null, []), active: new FormControl(null, []),
posts: new FormControl(null, []),
createdAt: new FormControl(null, []) createdAt: new FormControl(null, [])
}); });


@@ -228,9 +228,9 @@ export const userJsonhalForm = new FormGroup({
email: new FormControl(null, [Validators.required, Validators.email]), email: new FormControl(null, [Validators.required, Validators.email]),
firstName: new FormControl(null, [Validators.required]), firstName: new FormControl(null, [Validators.required]),
lastName: new FormControl(null, [Validators.required]), lastName: new FormControl(null, [Validators.required]),
image: new FormControl(null, []),
password: new FormControl(null, []), password: new FormControl(null, []),
active: new FormControl(null, []), active: new FormControl(null, []),
posts: new FormControl(null, []),
createdAt: new FormControl(null, []) createdAt: new FormControl(null, [])
}); });


@@ -238,8 +238,8 @@ export const userJsonldForm = new FormGroup({
email: new FormControl(null, [Validators.required, Validators.email]), email: new FormControl(null, [Validators.required, Validators.email]),
firstName: new FormControl(null, [Validators.required]), firstName: new FormControl(null, [Validators.required]),
lastName: new FormControl(null, [Validators.required]), lastName: new FormControl(null, [Validators.required]),
image: new FormControl(null, []),
password: new FormControl(null, []), password: new FormControl(null, []),
active: new FormControl(null, []), active: new FormControl(null, []),
posts: new FormControl(null, []),
createdAt: new FormControl(null, []) createdAt: new FormControl(null, [])
}); });

Cargando…
Cancelar
Guardar