Enable automatic tax

pull/600/head
binwiederhier 2023-01-30 09:30:51 -05:00
parent 4ad1099e9f
commit b10b0f8a6a
1 changed files with 2 additions and 4 deletions

View File

@ -145,10 +145,8 @@ func (s *Server) handleAccountBillingSubscriptionCreate(w http.ResponseWriter, r
Quantity: stripe.Int64(1), Quantity: stripe.Int64(1),
}, },
}, },
Params: stripe.Params{ AutomaticTax: &stripe.CheckoutSessionAutomaticTaxParams{
Metadata: map[string]string{ Enabled: stripe.Bool(true),
"user_id": u.ID,
},
}, },
} }
sess, err := s.stripe.NewCheckoutSession(params) sess, err := s.stripe.NewCheckoutSession(params)