Enable automatic tax

This commit is contained in:
binwiederhier 2023-01-30 09:30:51 -05:00
parent 4ad1099e9f
commit b10b0f8a6a

View file

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