sms alarming flag

This commit is contained in:
Julian Krauser 2024-11-27 10:07:59 +01:00
parent 1d73a15227
commit 5c68f0c54f
14 changed files with 90 additions and 3 deletions

View file

@ -10,6 +10,9 @@ export class communication {
@Column({ type: "boolean", default: false })
preferred: boolean;
@Column({ type: "boolean", default: false })
isSMSAlarming: boolean;
@Column({ type: "varchar", length: 255, nullable: true })
mobile: string;

View file

@ -65,4 +65,5 @@ export class member {
firstMembershipEntry?: membership;
lastMembershipEntry?: membership;
preferredCommunication?: Array<communication>;
smsAlarming?: Array<communication>;
}