Update home route

This commit is contained in:
2023-08-17 15:18:07 +02:00
parent fa7d60726f
commit 680c2d2624
3 changed files with 30 additions and 1 deletions

View File

@ -118,6 +118,10 @@ export class CouplesList {
return this.list.length === 0;
}
public get size(): number {
return this.list.length;
}
public get fullList(): Couple[] {
return this.list;
}

View File

@ -207,6 +207,10 @@ export class MembersList {
return this.list.length === 0;
}
public get size(): number {
return this.list.length;
}
public get fullList(): Member[] {
return this.list;
}