Update home route
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user