Initial attendee management

This commit is contained in:
Jose Selesan
2026-09-18 09:42:37 -03:00
parent fa30fe2cff
commit d7ebb5b234
111 changed files with 13784 additions and 36 deletions

View File

@@ -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,
};
}