mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
40 lines
863 B
JavaScript
40 lines
863 B
JavaScript
var reqwest = require('reqwest');
|
|
|
|
var FeatureStore = function () {
|
|
};
|
|
|
|
var TYPE = 'json';
|
|
var CONTENT_TYPE = 'application/json';
|
|
|
|
FeatureStore.prototype = {
|
|
updateFeature: function (feature) {
|
|
return reqwest({
|
|
url: 'features/' + feature.name,
|
|
method: 'put',
|
|
type: TYPE,
|
|
contentType: CONTENT_TYPE,
|
|
data: JSON.stringify(feature)
|
|
});
|
|
},
|
|
|
|
createFeature: function (feature) {
|
|
return reqwest({
|
|
url: 'features',
|
|
method: 'post',
|
|
type: TYPE,
|
|
contentType: CONTENT_TYPE,
|
|
data: JSON.stringify(feature)
|
|
});
|
|
},
|
|
|
|
getFeatures: function () {
|
|
return reqwest({
|
|
url: 'features',
|
|
method: 'get',
|
|
type: TYPE
|
|
});
|
|
}
|
|
};
|
|
|
|
module.exports = FeatureStore;
|