feat: created_via for tracking how runners got into the system #212

Merged
philipp merged 6 commits from 211-created-via into dev 2025-03-28 17:05:12 +00:00
Showing only changes of commit 9692569953 - Show all commits

View File

@ -75,6 +75,14 @@ export abstract class Participant {
@IsEmail()
email?: string;
/**
* how the participant got into the system
*/
@Column({ nullable: true })
@IsOptional()
@IsEmail()
created_via?: string;
/**
* Turns this entity into it's response class.
*/