You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current logic flow won't properly handle purchasing multiple ticket tiers or combining purchase of free/paid tickets. The user will potentially be redirected to Stripe before the free tickets are processed.
We should probably do something like the following:
Loop through all tickets to filter free and paid tickets before making any API requests.
Loop through all free tickets and make free purchase API requests for each.
Loop through all paid tickets to build out Stripe redirect
Notify user that their free tickets have been purchased/processed and that they'll be redirected to Stripe next to pay for remaining tickets.
Once Stripe purchase has succeeded, collect all secret keys for free and paid tickets to redirect user to purchased tickets route so they can view and download all tickets in a single group.
The current logic flow won't properly handle purchasing multiple ticket tiers or combining purchase of free/paid tickets. The user will potentially be redirected to Stripe before the free tickets are processed.
We should probably do something like the following:
free
andpaid
tickets before making any API requests.free
tickets and make free purchase API requests for each.paid
tickets to build out Stripe redirectOriginally posted by @calebjacob in #58 (comment)
The text was updated successfully, but these errors were encountered: