billing: Rename stripeToken to stripe_token.

When we started the billing system we started by following conventions used
in the Stripe documentation, but in hindsight it makes more sense to follow
conventions used in the Zulip codebase.
This commit is contained in:
Rishi Gupta 2018-11-28 18:30:09 -08:00
parent d302fae31b
commit f3ecb05762
2 changed files with 2 additions and 2 deletions

View File

@ -226,7 +226,7 @@ class StripeTest(ZulipTestCase):
if stripe_token is None: if stripe_token is None:
stripe_token = stripe_create_token().id stripe_token = stripe_create_token().id
params.update({ params.update({
'stripeToken': stripe_token, 'stripe_token': stripe_token,
'billing_modality': 'charge_automatically', 'billing_modality': 'charge_automatically',
}) })
params.update(kwargs) params.update(kwargs)

View File

@ -94,7 +94,7 @@ def initial_upgrade(request: HttpRequest) -> HttpResponse:
'lowball seat count', 'lowball seat count',
"You must invoice for at least %d users." % (min_required_seat_count,)) "You must invoice for at least %d users." % (min_required_seat_count,))
seat_count = invoiced_seat_count seat_count = invoiced_seat_count
process_initial_upgrade(user, plan, seat_count, request.POST.get('stripeToken', None)) process_initial_upgrade(user, plan, seat_count, request.POST.get('stripe_token', None))
except BillingError as e: except BillingError as e:
error_message = e.message error_message = e.message
error_description = e.description error_description = e.description