From 08ec29fa1b5aa46b68c5286a3264f1f30d224424 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Fri, 20 Mar 2020 11:42:57 +0530 Subject: [PATCH] fix(donate): update plans in config --- config/donation-settings.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/donation-settings.js b/config/donation-settings.js index 62d0721e4e..9083d49436 100644 --- a/config/donation-settings.js +++ b/config/donation-settings.js @@ -4,13 +4,13 @@ require('dotenv').config({ path: path.resolve(__dirname, '../.env') }); // Configuration for client side const durationsConfig = { year: 'yearly', - // month: 'monthly', + // month: 'monthly', // We have disabled montly payments onetime: 'one-time' }; const amountsConfig = { year: [100000, 25000, 6000], - // month: [5000, 3500, 500], - onetime: [100000, 25000, 3500] + month: [5000, 3500, 500], + onetime: [100000, 25000, 6000] }; const defaultAmount = { year: 6000, @@ -28,14 +28,14 @@ const modalDefaultStateConfig = { // Configuration for server side const durationKeysConfig = ['year', 'month', 'onetime']; -const donationOneTimeConfig = [100000, 25000, 3500]; +const donationOneTimeConfig = [100000, 25000, 6000]; const donationSubscriptionConfig = { duration: { year: 'Yearly', month: 'Monthly' }, plans: { - year: [100000, 25000, 3500], + year: [100000, 25000, 6000], month: [5000, 3500, 500] } };