Initial attendee management
This commit is contained in:
@@ -18,6 +18,7 @@ export type GroupRecord = {
|
||||
price: PriceLike | number | null;
|
||||
billingType: BillingType | null;
|
||||
dueDay: number | null;
|
||||
inviteToken?: string | null;
|
||||
};
|
||||
|
||||
export function toGroupDto(record: GroupRecord): GroupDto {
|
||||
@@ -34,6 +35,7 @@ export function toGroupDto(record: GroupRecord): GroupDto {
|
||||
price: record.price == null ? null : Number(record.price.toString()),
|
||||
billingType: record.billingType,
|
||||
dueDay: record.dueDay,
|
||||
inviteToken: record.inviteToken ?? null,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user