diff --git a/website/api/controllers/customers/create-quote.js b/website/api/controllers/customers/create-quote.js index cb814f051d..789992a7f2 100644 --- a/website/api/controllers/customers/create-quote.js +++ b/website/api/controllers/customers/create-quote.js @@ -25,7 +25,7 @@ module.exports = { fn: async function ({ numberOfHosts }) { // Determine the price, 1 dollar * host * month (Billed anually) - let price = 1.00 * numberOfHosts * 12; + let price = 2.00 * numberOfHosts * 12; let quote = await Quote.create({ numberOfHosts: numberOfHosts, diff --git a/website/api/controllers/customers/save-billing-info-and-subscribe.js b/website/api/controllers/customers/save-billing-info-and-subscribe.js index 8ae3fe51ea..888111c25e 100644 --- a/website/api/controllers/customers/save-billing-info-and-subscribe.js +++ b/website/api/controllers/customers/save-billing-info-and-subscribe.js @@ -89,7 +89,7 @@ module.exports = { customer: this.req.me.stripeCustomerId, items: [ { - price: sails.config.custom.stripeSubscriptionProduct, + price: sails.config.custom.stripeSubscriptionPriceId, quantity: quoteRecord.numberOfHosts, }, ], diff --git a/website/views/pages/customers/new-license.ejs b/website/views/pages/customers/new-license.ejs index f64e5dd586..6b5e6db4a4 100644 --- a/website/views/pages/customers/new-license.ejs +++ b/website/views/pages/customers/new-license.ejs @@ -18,7 +18,7 @@
- $1.00/month/device
(Billed annually at $12/device)
+ $2.00/month/device
(Billed annually at $24/device)
Premium
-/host/month
- (USD, billed annually at $12) + (USD, billed annually at $24)