spee.ch/server/routes/api/claimsList.js

23 lines
486 B
JavaScript
Raw Normal View History

2018-03-29 02:35:41 +02:00
const { getClaimList } = require('../../helpers/lbryApi.js');
const { handleErrorResponse } = require('helpers/errorHandlers.js');
/*
route to get list of claims
*/
const claimList = (db) => {
return ({ ip, originalUrl, params }, res) => {
getClaimList(params.name)
.then(claimsList => {
res.status(200).json(claimsList);
})
.catch(error => {
handleErrorResponse(originalUrl, ip, error, res);
});
};
};
module.exports = claimList;