spee.ch/server/controllers/api/claim/list/index.js

21 lines
450 B
JavaScript
Raw Normal View History

2018-04-27 18:54:36 +02:00
const { getClaimList } = require('../../../../lbrynet');
const { handleErrorResponse } = require('../../../utils/errorHandlers.js');
2018-03-29 02:35:41 +02:00
/*
route to get list of claims
*/
2018-03-29 20:24:52 +02: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-29 02:35:41 +02:00
};
module.exports = claimList;