Update request body for offline license activation

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

View File

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