Update request body for offline license activation

This commit is contained in:
Rory Powell 2023-07-06 22:00:13 +01:00
parent ec5381c9d5
commit 7bc14235aa
1 changed files with 2 additions and 2 deletions

View File

@ -27,11 +27,11 @@ export const buildLicensingEndpoints = API => ({
// OFFLINE LICENSE // OFFLINE LICENSE
activateOfflineLicense: async ({ offlineLicense }) => { activateOfflineLicense: async ({ offlineLicenseToken }) => {
return API.post({ return API.post({
url: "/api/global/license/offline", url: "/api/global/license/offline",
body: { body: {
offlineLicense offlineLicenseToken
}, },
}) })
}, },