|
|
|
@@ -438,7 +438,7 @@ export const saleSummaryJsonldForm = new FormGroup({ |
|
|
|
|
|
|
|
export const taskForm = new FormGroup({ |
|
|
|
headline: new FormControl(null, [Validators.required]), |
|
|
|
description: new FormControl(null, [Validators.required]), |
|
|
|
description: new FormControl(null, []), |
|
|
|
createdBy: new FormControl(null, []), |
|
|
|
assignedTo: new FormControl(null, []), |
|
|
|
assignedToIri: new FormControl(null, [Validators.required]), |
|
|
|
@@ -458,7 +458,7 @@ export const taskForm = new FormGroup({ |
|
|
|
export const taskJsonhalForm = new FormGroup({ |
|
|
|
_links: new FormControl(null, []), |
|
|
|
headline: new FormControl(null, [Validators.required]), |
|
|
|
description: new FormControl(null, [Validators.required]), |
|
|
|
description: new FormControl(null, []), |
|
|
|
createdBy: new FormControl(null, []), |
|
|
|
assignedTo: new FormControl(null, []), |
|
|
|
assignedToIri: new FormControl(null, [Validators.required]), |
|
|
|
@@ -477,7 +477,7 @@ export const taskJsonhalForm = new FormGroup({ |
|
|
|
|
|
|
|
export const taskJsonldForm = new FormGroup({ |
|
|
|
headline: new FormControl(null, [Validators.required]), |
|
|
|
description: new FormControl(null, [Validators.required]), |
|
|
|
description: new FormControl(null, []), |
|
|
|
createdBy: new FormControl(null, []), |
|
|
|
assignedTo: new FormControl(null, []), |
|
|
|
assignedToIri: new FormControl(null, [Validators.required]), |
|
|
|
@@ -498,6 +498,7 @@ export const taskNoteForm = new FormGroup({ |
|
|
|
message: new FormControl(null, [Validators.required]), |
|
|
|
owner: new FormControl(null, []), |
|
|
|
taskIri: new FormControl(null, [Validators.required]), |
|
|
|
contactType: new FormControl(null, [Validators.required]), |
|
|
|
createdAt: new FormControl(null, []) |
|
|
|
}); |
|
|
|
|
|
|
|
@@ -506,6 +507,7 @@ export const taskNoteJsonhalForm = new FormGroup({ |
|
|
|
message: new FormControl(null, [Validators.required]), |
|
|
|
owner: new FormControl(null, []), |
|
|
|
taskIri: new FormControl(null, [Validators.required]), |
|
|
|
contactType: new FormControl(null, [Validators.required]), |
|
|
|
createdAt: new FormControl(null, []) |
|
|
|
}); |
|
|
|
|
|
|
|
@@ -513,6 +515,7 @@ export const taskNoteJsonldForm = new FormGroup({ |
|
|
|
message: new FormControl(null, [Validators.required]), |
|
|
|
owner: new FormControl(null, []), |
|
|
|
taskIri: new FormControl(null, [Validators.required]), |
|
|
|
contactType: new FormControl(null, [Validators.required]), |
|
|
|
createdAt: new FormControl(null, []) |
|
|
|
}); |
|
|
|
|
|
|
|
@@ -520,6 +523,7 @@ 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]), |
|
|
|
goals: new FormControl(null, []), |
|
|
|
image: new FormControl(null, []), |
|
|
|
imageUrl: new FormControl(null, []), |
|
|
|
fullName: new FormControl(null, []), |
|
|
|
@@ -533,6 +537,7 @@ 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]), |
|
|
|
goals: new FormControl(null, []), |
|
|
|
image: new FormControl(null, []), |
|
|
|
imageUrl: new FormControl(null, []), |
|
|
|
fullName: new FormControl(null, []), |
|
|
|
@@ -545,6 +550,7 @@ 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]), |
|
|
|
goals: new FormControl(null, []), |
|
|
|
image: new FormControl(null, []), |
|
|
|
imageUrl: new FormControl(null, []), |
|
|
|
fullName: new FormControl(null, []), |
|
|
|
|