From 27d6e25125033105ea0b608a0a5be85728b33ce5 Mon Sep 17 00:00:00 2001 From: Florian Eisenmenger Date: Mon, 11 Mar 2024 14:50:00 +0100 Subject: [PATCH] apiForms: User --- matsen-tool/src/app/_forms/apiForms.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matsen-tool/src/app/_forms/apiForms.ts b/matsen-tool/src/app/_forms/apiForms.ts index d844d78..0f7d13e 100644 --- a/matsen-tool/src/app/_forms/apiForms.ts +++ b/matsen-tool/src/app/_forms/apiForms.ts @@ -217,9 +217,9 @@ export const userForm = new FormGroup({ email: new FormControl(null, [Validators.required, Validators.email]), firstName: new FormControl(null, [Validators.required]), lastName: new FormControl(null, [Validators.required]), + image: new FormControl(null, []), password: new FormControl(null, []), active: new FormControl(null, []), - posts: new FormControl(null, []), createdAt: new FormControl(null, []) }); @@ -228,9 +228,9 @@ export const userJsonhalForm = new FormGroup({ email: new FormControl(null, [Validators.required, Validators.email]), firstName: new FormControl(null, [Validators.required]), lastName: new FormControl(null, [Validators.required]), + image: new FormControl(null, []), password: new FormControl(null, []), active: new FormControl(null, []), - posts: new FormControl(null, []), createdAt: new FormControl(null, []) }); @@ -238,8 +238,8 @@ export const userJsonldForm = new FormGroup({ email: new FormControl(null, [Validators.required, Validators.email]), firstName: new FormControl(null, [Validators.required]), lastName: new FormControl(null, [Validators.required]), + image: new FormControl(null, []), password: new FormControl(null, []), active: new FormControl(null, []), - posts: new FormControl(null, []), createdAt: new FormControl(null, []) });