latest work #20

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

View File

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

View File

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

View File

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