fix: add .created_via to ResponseParticipant constructor

This commit is contained in:
Philipp Dormann 2025-03-28 18:24:53 +01:00
parent ebde8c6ffd
commit 2e271bcd52
Signed by: philipp
GPG Key ID: 3BB9ADD52DCA4314

View File

@ -70,6 +70,7 @@ export abstract class ResponseParticipant implements IResponse {
public constructor(participant: Participant) {
this.id = participant.id;
this.firstname = participant.firstname;
this.created_via = participant.created_via;
this.middlename = participant.middlename;
this.lastname = participant.lastname;
this.phone = participant.phone;