Implemented deep address validation

ref #105
This commit is contained in:
2021-01-16 20:12:17 +01:00
parent f245840cde
commit 9dc9ce37d8
9 changed files with 83 additions and 2 deletions

View File

@@ -23,6 +23,7 @@ export class CreateRunnerOrganisation extends CreateRunnerGroup {
newRunnerOrganisation.name = this.name;
newRunnerOrganisation.contact = await this.getContact();
newRunnerOrganisation.address = this.address;
Address.validate(newRunnerOrganisation.address);
return newRunnerOrganisation;
}