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:
parent
980a63ceba
commit
9348134afe
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue