add mailinglistAddr to getJson

This commit is contained in:
B. Petersen
2022-07-26 14:33:01 +02:00
parent bf5edfa3b3
commit 5a4b12c914
2 changed files with 2 additions and 0 deletions

View File

@@ -92,6 +92,7 @@ export class Chat {
color: this.color,
id: this.getId(),
name: this.getName(),
mailinglistAddr: this.getMailinglistAddr(),
profileImage: this.getProfileImage(),
type: this.getType(),
isSelfTalk: this.isSelfTalk(),

View File

@@ -12,6 +12,7 @@ export interface ChatJSON {
color: string
id: number
name: string
mailinglistAddr: string,
profileImage: string
type: number
isSelfTalk: boolean