Fully implemented addresses feature/105-addresses #107

Manually merged
niggl merged 23 commits from feature/105-addresses into dev 2021-01-19 15:37:37 +00:00
4 changed files with 4 additions and 4 deletions
Showing only changes of commit 8bc01d3f24 - Show all commits

View File

@ -29,7 +29,7 @@ export class CreateGroupContact {
lastname: string;
/**
* The new contact's address's id.
* The new contact's address.
*/
@IsOptional()
@IsObject()

View File

@ -45,7 +45,7 @@ export abstract class CreateParticipant {
email?: string;
/**
* The new participant's address's id.
* The new participant's address.
*/
@IsOptional()
@IsObject()

View File

@ -8,7 +8,7 @@ import { CreateRunnerGroup } from './CreateRunnerGroup';
*/
export class CreateRunnerOrganisation extends CreateRunnerGroup {
/**
* The new organisation's address's id.
* The new organisation's address.
*/
@IsOptional()
@IsObject()

View File

@ -16,7 +16,7 @@ export class UpdateRunnerOrganisation extends CreateRunnerGroup {
id: number;
/**
* The updated organisation's address's id.
* The updated organisation's address.
*/
@IsOptional()
@IsObject()