add created_via to participant entity

ref #211
This commit is contained in:
Philipp Dormann 2025-03-28 12:05:23 +01:00
parent 8c6fdb2239
commit 9692569953
Signed by: philipp
GPG Key ID: 3BB9ADD52DCA4314

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.
*/