latest work #20

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

View File

@ -1,4 +1,4 @@
import { PrimaryGeneratedColumn, Column } from "typeorm";
import { PrimaryGeneratedColumn, Column, ManyToOne } from "typeorm";
import {
IsInt,
IsNotEmpty,
@ -24,7 +24,7 @@ export abstract class Donation {
*/
@Column()
@IsNotEmpty()
//TODO: Relationship
@ManyToOne(() => Participant, donor => donor.donations)
donor: Participant;
/**

View File

@ -1,4 +1,4 @@
import { PrimaryGeneratedColumn, Column } from "typeorm";
import { PrimaryGeneratedColumn, Column, OneToMany } from "typeorm";
import {
IsEmail,
IsInt,
@ -8,6 +8,7 @@ import {
IsString,
} from "class-validator";
import { Address } from "./Address";
import { Donation } from "./Donation";
/**
* Defines the participant interface.
@ -72,4 +73,10 @@ export abstract class Participant {
@IsOptional()
@IsEmail()
email?: string;
/**
* Used to link the participant as the donor of a donation.
*/
@OneToMany(() => Donation, donation => donation.donor)
donations: Donation[];
}