diff --git a/src/models/RunnerOrganisation.ts b/src/models/RunnerOrganisation.ts index 4245fa0..f266599 100644 --- a/src/models/RunnerOrganisation.ts +++ b/src/models/RunnerOrganisation.ts @@ -1,5 +1,5 @@ import { Entity, Column, ManyToOne, OneToMany } from "typeorm"; -import { IsOptional,} from "class-validator"; +import { IsOptional, } from "class-validator"; import { RunnerGroup } from "./RunnerGroup"; import { Address } from "./Address"; import { RunnerTeam } from "./RunnerTeam"; @@ -18,9 +18,9 @@ export class RunnerOrganisation extends RunnerGroup { @ManyToOne(() => Address, address => address.groups, { nullable: true }) address?: Address; - /** - * Used to link teams to runner groups. - */ + /** + * Used to link teams to runner groups. + */ @OneToMany(() => RunnerTeam, team => team.parentGroup, { nullable: true }) teams: RunnerTeam[]; } \ No newline at end of file