diff --git a/src/models/actions/create/CreateSelfServiceRunner.ts b/src/models/actions/create/CreateSelfServiceRunner.ts index 953db43..163a16d 100644 --- a/src/models/actions/create/CreateSelfServiceRunner.ts +++ b/src/models/actions/create/CreateSelfServiceRunner.ts @@ -28,6 +28,7 @@ export class CreateSelfServiceRunner extends CreateParticipant { public async toEntity(group: RunnerGroup): Promise { let newRunner: Runner = new Runner(); + newRunner.created_via = "selfservice"; newRunner.firstname = this.firstname; newRunner.middlename = this.middlename; newRunner.lastname = this.lastname;