From fcccf82d480e2e85d5c7b0e1faffda9038731d8c Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Fri, 28 Mar 2025 12:06:17 +0100 Subject: [PATCH] add created_via = "selfservice" to CreateSelfServiceRunner --- src/models/actions/create/CreateSelfServiceRunner.ts | 1 + 1 file changed, 1 insertion(+) 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;