From 5d6164973e92fa8a3e3c18a0eb2e29494aea4f48 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Sun, 9 Dec 2018 20:48:25 +0100 Subject: Fix linting issues --- src/stores/PaymentStore.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/stores/PaymentStore.js') 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'; export default class PaymentStore extends Store { @observable plansRequest = new CachedRequest(this.api.payment, 'plans'); + @observable createHostedPageRequest = new Request(this.api.payment, 'getHostedPage'); + @observable createDashboardUrlRequest = new Request(this.api.payment, 'getDashboardUrl'); + @observable ordersDataRequest = new CachedRequest(this.api.payment, 'getOrders'); constructor(...args) { -- cgit v1.2.3-54-g00ecf