aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/User.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/User.js')
-rw-r--r--src/models/User.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/models/User.js b/src/models/User.js
index 74a39926b..d864dde0c 100644
--- a/src/models/User.js
+++ b/src/models/User.js
@@ -24,8 +24,6 @@ export default class User {
24 24
25 @observable hadSubscription = false; 25 @observable hadSubscription = false;
26 26
27 @observable isPremium = true;
28
29 @observable beta = false; 27 @observable beta = false;
30 28
31 @observable donor = {}; 29 @observable donor = {};
@@ -49,7 +47,6 @@ export default class User {
49 this.lastname = data.lastname || this.lastname; 47 this.lastname = data.lastname || this.lastname;
50 this.organization = data.organization || this.organization; 48 this.organization = data.organization || this.organization;
51 this.accountType = data.accountType || this.accountType; 49 this.accountType = data.accountType || this.accountType;
52 this.isPremium = true;
53 this.beta = data.beta || this.beta; 50 this.beta = data.beta || this.beta;
54 this.donor = data.donor || this.donor; 51 this.donor = data.donor || this.donor;
55 this.isDonor = data.isDonor || this.isDonor; 52 this.isDonor = data.isDonor || this.isDonor;