aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-08-21 14:08:18 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-08-21 14:08:18 +0200
commita3f3320c38ae500c8d670ccbff1050b3849c9e3b (patch)
tree07730d371cc363fbfce8d6f2d73cd80efa1ba8e6
parentRemove analytics (diff)
downloadferdium-app-a3f3320c38ae500c8d670ccbff1050b3849c9e3b.tar.gz
ferdium-app-a3f3320c38ae500c8d670ccbff1050b3849c9e3b.tar.zst
ferdium-app-a3f3320c38ae500c8d670ccbff1050b3849c9e3b.zip
Make all users premium
-rw-r--r--src/models/User.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/models/User.js b/src/models/User.js
index bec78fc16..d12aef278 100644
--- a/src/models/User.js
+++ b/src/models/User.js
@@ -20,7 +20,7 @@ export default class User {
20 20
21 @observable isSubscriptionOwner = false; 21 @observable isSubscriptionOwner = false;
22 22
23 @observable isPremium = false; 23 @observable isPremium = true;
24 24
25 @observable beta = false; 25 @observable beta = false;
26 26
@@ -43,7 +43,7 @@ export default class User {
43 this.lastname = data.lastname || this.lastname; 43 this.lastname = data.lastname || this.lastname;
44 this.organization = data.organization || this.organization; 44 this.organization = data.organization || this.organization;
45 this.accountType = data.accountType || this.accountType; 45 this.accountType = data.accountType || this.accountType;
46 this.isPremium = data.isPremium || this.isPremium; 46 this.isPremium = true;
47 this.beta = data.beta || this.beta; 47 this.beta = data.beta || this.beta;
48 this.donor = data.donor || this.donor; 48 this.donor = data.donor || this.donor;
49 this.isDonor = data.isDonor || this.isDonor; 49 this.isDonor = data.isDonor || this.isDonor;