Other classed are now using the new Address class rather than the old location placeholder
ref #11
This commit is contained in:
parent
2bd0cbadbe
commit
dca9aef258
@ -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.
|
||||||
|
@ -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;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user