Browse Source

add rest method

activeAddress
Ivan Socolsky 10 years ago
parent
commit
19f5e4b011
  1. 10
      lib/expressapp.js

10
lib/expressapp.js

@ -284,6 +284,16 @@ ExpressApp.start = function(opts) {
});
});
router.post('/v1/addresses/scan/', function(req, res) {
getServerWithAuth(req, res, function(server) {
server.startScan(req.body, function(err) {
if (err) return returnError(err, res, req);
res.end();
});
});
});
app.use(opts.basePath || '/bws/api', router);
return app;
};

Loading…
Cancel
Save