Can set member country

This commit is contained in:
2023-08-11 11:09:40 +02:00
parent 39190de454
commit 7d97909d06
4 changed files with 101 additions and 35 deletions

View File

@ -148,6 +148,17 @@ export class Member implements MemberDataApi {
day: this.death_day,
};
}
get hasContactInfo(): boolean {
return this.email ||
this.phone ||
this.address ||
this.city ||
this.postal_code ||
this.country
? true
: false;
}
}
export function fmtDate(d?: DateValue): string {