1
0
Fork 0
mirror of synced 2024-10-05 12:34:50 +13:00

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

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
},
})
},