1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-24 01:18:01 +02:00

fix indet

This commit is contained in:
sveisvei 2016-12-09 22:09:25 +01:00
parent abc8c8cfd6
commit 07d69276b9

View File

@ -24,11 +24,11 @@ function storeApplicationMetaData (appName, key, value) {
const data = {}; const data = {};
data[key] = value; data[key] = value;
return fetch(`${URI}/${appName}`, { return fetch(`${URI}/${appName}`, {
method: 'POST', method: 'POST',
headers, headers,
body: JSON.stringify(data), body: JSON.stringify(data),
credentials: 'include', credentials: 'include',
}).then(throwIfNotSuccess); }).then(throwIfNotSuccess);
} }
module.exports = { module.exports = {