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

View File

@ -26,6 +26,7 @@ export class CreateSelfServiceCitizenRunner extends CreateParticipant {
public async toEntity(): Promise<Runner> {
let newRunner: Runner = new Runner();
newRunner.created_via = "selfservice";
newRunner.firstname = this.firstname;
newRunner.middlename = this.middlename;
newRunner.lastname = this.lastname;