()
| 290 | isParentHome () { return this.get('role') === 'parent-home' } |
| 291 | |
| 292 | hasNoVerifiedChild () { return !(_.find((this.get('related') || []), c => (c.relation === 'children') && c.verified)) } |
| 293 | |
| 294 | isRegisteredHomeUser () { return this.isHomeUser() && !this.get('anonymous') } |
| 295 |