0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Renamed plan -> planName for update subscription api call

refs https://github.com/TryGhost/members.js/issues/20

- API uses planName for update subscription api call
This commit is contained in:
Rish 2020-05-20 00:11:58 +05:30
parent 2b34ee5c28
commit 197be15e63

View file

@ -174,7 +174,7 @@ export default class ParentContainer extends React.Component {
} else if (action === 'updatePlan') {
const {plan, subscriptionId} = data;
await this.GhostApi.member.updateSubscription({
plan, subscriptionId
planName: plan, subscriptionId
});
} else if (action === 'editBilling') {
await this.GhostApi.member.editBilling();