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 f95b614410 - Show all commits

View File

@ -78,7 +78,7 @@ export abstract class Participant {
/**
* how the participant got into the system
*/
@Column({ nullable: true })
@Column({ nullable: true, default: "backend" })
@IsOptional()
@IsEmail()
created_via?: string;