0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Added display_name & account_id to stripe connect

no-issue

This will allow us to display this information in the Admin to make it
easier for the user to see what the current state is.
This commit is contained in:
Fabien O'Carroll 2020-06-09 16:37:07 +02:00
parent 980a63ceba
commit 9348134afe

View file

@ -51,7 +51,9 @@ async function getStripeConnectTokenData(encodedData, getSessionProp) {
return { return {
public_key: data.p, public_key: data.p,
secret_key: data.a, secret_key: data.a,
livemode: data.l livemode: data.l,
display_name: data.n,
account_id: data.i
}; };
} }