latest work #20

Merged
philipp merged 233 commits from dev into main 2020-12-09 18:49:33 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit dca9aef258 - Show all commits

View File

@ -7,6 +7,7 @@ import {
IsPhoneNumber, IsPhoneNumber,
IsString, IsString,
} from "class-validator"; } from "class-validator";
import { Address } from "./Address";
/** /**
* Defines the participant interface. * Defines the participant interface.
@ -52,7 +53,7 @@ export abstract class Participant {
@Column() @Column()
@IsOptional() @IsOptional()
//TODO: Relationship //TODO: Relationship
address?: Location; address?: Address;
/** /**
* The participant's phone number. * The participant's phone number.

View File

@ -1,6 +1,7 @@
import { Entity, Column } from "typeorm"; import { Entity, Column } from "typeorm";
import { IsOptional,} from "class-validator"; import { IsOptional,} from "class-validator";
import { RunnerGroup } from "./RunnerGroup"; import { RunnerGroup } from "./RunnerGroup";
import { Address } from "./Address";
/** /**
* Defines a runner organisation (business or school for example). * Defines a runner organisation (business or school for example).
@ -15,5 +16,5 @@ export class RunnerOrganisation extends RunnerGroup {
@Column() @Column()
@IsOptional() @IsOptional()
//TODO: Relationship //TODO: Relationship
address?: Location; address?: Address;
} }