0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Updated Members bulk endpoint req body format

refs https://github.com/TryGhost/Team/issues/1077
This commit is contained in:
Fabien O'Carroll 2021-10-01 12:08:55 +02:00
parent ea42fac527
commit 7a7d037176

View file

@ -411,7 +411,7 @@ module.exports = {
method: 'edit'
},
async query(frame) {
return membersService.api.members.bulkEdit(frame.data, frame.options);
return membersService.api.members.bulkEdit(frame.data.bulk, frame.options);
}
},