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

Added update subscription API

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

- Adds update subscription api for member
- API allows updating plan for a particular subscription for logged-in member
This commit is contained in:
Rish 2020-05-20 00:01:09 +05:30
parent f59d8213f6
commit b865d002a9

View file

@ -170,6 +170,21 @@ function setupGhostApi() {
}).catch(function (err) {
throw err;
});
},
async updateSubscription({subscriptionId, planName}) {
const identity = await api.member.identity();
const url = endpointFor({type: 'members', resource: 'subscriptions'}) + subscriptionId + '/';
return makeRequest({
url,
method: 'PUT',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
identity: identity,
planName
})
});
}
};