I'm using stripe subscription payment in my rails application to charge my customers on my website. Does stripe subscription payment method uses the stripe paymentIntents or should I migrate to payment Intentets creations rather than payment subscriptions?
Stripe::Subscription.create(
customer: user.stripe_id,
items: [{ plan: plan.stripe_id }]
)
It already charges but I need to know should I migrate to payment intents or not.