Added todo's for relationships

This commit is contained in:
Nicolai Ort 2020-12-01 17:27:48 +01:00
parent f999c416c4
commit 72f80859a9
3 changed files with 3 additions and 0 deletions

View File

@ -51,6 +51,7 @@ export abstract class Participant {
*/ */
@Column() @Column()
@IsOptional() @IsOptional()
//TODO: Relationship
address?: Location; address?: Location;
/** /**

View File

@ -34,5 +34,6 @@ export abstract class RunnerGroup {
*/ */
@Column() @Column()
@IsOptional() @IsOptional()
//TODO: Relationship
contact?: GroupContact; contact?: GroupContact;
} }

View File

@ -23,6 +23,7 @@ export abstract class Scan {
*/ */
@Column() @Column()
@IsNotEmpty() @IsNotEmpty()
//TODO: Relationship
runner: Runner; runner: Runner;
/** /**