This commit is contained in:
Karol Wypchlo 2021-03-04 14:47:20 +01:00
parent 525a63161e
commit 33d8eb4dc4
1 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,8 @@ export default async (req, res) => {
const authorization = req.headers.authorization; // authorization header from request
const user = await got("http://accounts:3000/user", { headers: { authorization } }).json();
console.log(user);
if (isPaidTier(user.tier)) {
const message = `Customer can have only one active subscription at a time, use Stripe Customer Portal to manage active subscription`;
@ -41,6 +43,7 @@ export default async (req, res) => {
}
const customer = await getStripeCustomer(user, authorization);
console.log(customer);
const session = await stripe.checkout.sessions.create({
mode: "subscription",
payment_method_types: ["card"],