mirror of https://github.com/zulip/zulip.git
stripe: Allow user to update email for sending invoice.
This commit is contained in:
parent
6f094f0350
commit
9a4a07d933
|
@ -847,7 +847,12 @@ class BillingSession(ABC):
|
||||||
business_profile={
|
business_profile={
|
||||||
"headline": "Invoice and receipt billing information",
|
"headline": "Invoice and receipt billing information",
|
||||||
},
|
},
|
||||||
features={"customer_update": {"enabled": True, "allowed_updates": ["address", "name"]}},
|
features={
|
||||||
|
"customer_update": {
|
||||||
|
"enabled": True,
|
||||||
|
"allowed_updates": ["address", "name", "email"],
|
||||||
|
}
|
||||||
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
return stripe.billing_portal.Session.create(
|
return stripe.billing_portal.Session.create(
|
||||||
|
|
Loading…
Reference in New Issue