This commit is contained in:
2019-08-05 21:23:17 -04:00
parent a9f4324f29
commit 1e464de7e8
42 changed files with 837 additions and 165 deletions

View File

@@ -27,6 +27,11 @@ export default class Profile extends Record({
get fullName() {
return `${this.firstName} ${this.lastName}`;
}
get isRegisteredAccount() {
return this.hasLinkedApple ||
this.hasLinkedFacebook || this.hasLinkedGoogle || this.hasLocalAccount;
}
}
Profile.fromJS = (data = {}) => {