Revert removal of flow storage api

Whilst we know with the file system storage inplementation
getLibraryEntry is a suitable replacement for getFlow, this
may not be the case with other implementations.

The storage code uses the deprecated functions if they are
present - so the core code should call them and let the storage
layer decide what it calls.
This commit is contained in:
Nick O'Leary 2015-04-05 20:54:11 +01:00
parent 5be3472413
commit 5efbdf5d04
1 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ module.exports = {
});
},
get: function(req,res) {
storage.getLibraryEntry("flows",req.params[0]).then(function(data) {
storage.getFlow(req.params[0]).then(function(data) {
// data is already a JSON string
res.set('Content-Type', 'application/json');
res.send(data);
@ -91,7 +91,7 @@ module.exports = {
},
post: function(req,res) {
var flow = JSON.stringify(req.body);
storage.saveLibraryEntry("flows",req.params[0],{},flow).then(function() {
storage.saveFlow(req.params[0],flow).then(function() {
res.send(204);
}).otherwise(function(err) {
log.warn("Error loading flow '"+req.params[0]+"' : "+err);