From 45373f655f68fdd0b320cde175b6108454ad4731 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 17 Jul 2021 20:32:22 +0530 Subject: Removed Franz paid plans features: - serviceLimit - planSelection - trialStatusBar and other Franz features that were for different tiers of subscription. --- src/actions/index.js | 6 ------ src/actions/payment.js | 12 ------------ src/actions/user.js | 4 ---- 3 files changed, 22 deletions(-) delete mode 100644 src/actions/payment.js (limited to 'src/actions') diff --git a/src/actions/index.js b/src/actions/index.js index 6f32732b9..ed8283d6c 100644 --- a/src/actions/index.js +++ b/src/actions/index.js @@ -7,15 +7,12 @@ import recipePreview from './recipePreview'; import ui from './ui'; import app from './app'; import user from './user'; -import payment from './payment'; import news from './news'; import settings from './settings'; import requests from './requests'; import announcements from '../features/announcements/actions'; import workspaces from '../features/workspaces/actions'; import todos from '../features/todos/actions'; -import planSelection from '../features/planSelection/actions'; -import trialStatusBar from '../features/trialStatusBar/actions'; const actions = { service, @@ -24,7 +21,6 @@ const actions = { ui, app, user, - payment, news, settings, requests, @@ -35,6 +31,4 @@ export default Object.assign( { announcements }, { workspaces }, { todos }, - { planSelection }, - { trialStatusBar }, ); diff --git a/src/actions/payment.js b/src/actions/payment.js deleted file mode 100644 index f61faf197..000000000 --- a/src/actions/payment.js +++ /dev/null @@ -1,12 +0,0 @@ -import PropTypes from 'prop-types'; - -export default { - createHostedPage: { - planId: PropTypes.string.isRequired, - }, - upgradeAccount: { - planId: PropTypes.string.isRequired, - onCloseWindow: PropTypes.func, - }, - createDashboardUrl: {}, -}; diff --git a/src/actions/user.js b/src/actions/user.js index 7061a367a..20d27ee53 100644 --- a/src/actions/user.js +++ b/src/actions/user.js @@ -13,15 +13,11 @@ export default { password: PropTypes.string.isRequired, accountType: PropTypes.string, company: PropTypes.string, - plan: PropTypes.string, currency: PropTypes.string, }, retrievePassword: { email: PropTypes.string.isRequired, }, - activateTrial: { - planId: PropTypes.string.isRequired, - }, invite: { invites: PropTypes.array.isRequired, }, -- cgit v1.2.3-54-g00ecf