aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/PaymentStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-09 20:48:25 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-09 20:48:25 +0100
commit5d6164973e92fa8a3e3c18a0eb2e29494aea4f48 (patch)
tree382e6c672bbc0f7582b3b627b02111dcce902894 /src/stores/PaymentStore.js
parentAdd React 16 didCatch/ErrorBoundary component (diff)
downloadferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.tar.gz
ferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.tar.zst
ferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.zip
Fix linting issues
Diffstat (limited to 'src/stores/PaymentStore.js')
-rw-r--r--src/stores/PaymentStore.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stores/PaymentStore.js b/src/stores/PaymentStore.js
index 9e348d14e..4cabee194 100644
--- a/src/stores/PaymentStore.js
+++ b/src/stores/PaymentStore.js
@@ -7,8 +7,11 @@ import { gaEvent } from '../lib/analytics';
7 7
8export default class PaymentStore extends Store { 8export default class PaymentStore extends Store {
9 @observable plansRequest = new CachedRequest(this.api.payment, 'plans'); 9 @observable plansRequest = new CachedRequest(this.api.payment, 'plans');
10
10 @observable createHostedPageRequest = new Request(this.api.payment, 'getHostedPage'); 11 @observable createHostedPageRequest = new Request(this.api.payment, 'getHostedPage');
12
11 @observable createDashboardUrlRequest = new Request(this.api.payment, 'getDashboardUrl'); 13 @observable createDashboardUrlRequest = new Request(this.api.payment, 'getDashboardUrl');
14
12 @observable ordersDataRequest = new CachedRequest(this.api.payment, 'getOrders'); 15 @observable ordersDataRequest = new CachedRequest(this.api.payment, 'getOrders');
13 16
14 constructor(...args) { 17 constructor(...args) {