feature/11-new_classes #15

Merged
niggl merged 55 commits from feature/11-new_classes into dev 2020-12-02 17:48:19 +00:00
3 changed files with 4 additions and 6 deletions
Showing only changes of commit 748fff5c32 - Show all commits

View File

@ -1,4 +1,4 @@
import { Entity, PrimaryGeneratedColumn, Column } from "typeorm";
import { PrimaryGeneratedColumn, Column } from "typeorm";
import {
IsEmail,
IsInt,

View File

@ -1,10 +1,8 @@
import { Entity, PrimaryGeneratedColumn, Column } from "typeorm";
import { PrimaryGeneratedColumn, Column } from "typeorm";
import {
IsEmail,
IsInt,
IsNotEmpty,
IsOptional,
IsPhoneNumber,
IsString,
} from "class-validator";
@ -29,7 +27,7 @@ export abstract class RunnerGroup {
name: string;
/**
* The participant's middle name.
* The group's contact.
* Optional
*/
@Column()

View File

@ -1,4 +1,4 @@
import { Entity, PrimaryGeneratedColumn, Column } from "typeorm";
import { PrimaryGeneratedColumn, Column } from "typeorm";
import {
IsInt,
IsNotEmpty,