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

22 lines
516 B
JavaScript
Raw Normal View History

2018-03-29 02:35:41 +02:00
const { handleErrorResponse } = require('helpers/errorHandlers.js');
/*
route to get a short claim id from long claim Id
*/
const claimShortId = (db) => {
return ({ ip, originalUrl, body, params }, res) => {
db.Claim.getShortClaimIdFromLongClaimId(params.longId, params.name)
.then(shortId => {
res.status(200).json({success: true, data: shortId});
})
.catch(error => {
handleErrorResponse(originalUrl, ip, error, res);
});
};
};
module.exports = claimShortId;