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

21 lines
449 B
JavaScript
Raw Normal View History

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