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

21 lines
508 B
JavaScript
Raw Normal View History

2018-03-29 02:35:41 +02:00
const { handleErrorResponse } = require('helpers/errorHandlers.js');
2018-03-29 20:24:52 +02:00
const db = require('models');
2018-03-29 02:35:41 +02:00
/*
route to get a short claim id from long claim Id
*/
2018-03-29 20:24:52 +02:00
const claimShortId = ({ 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);
});
2018-03-29 02:35:41 +02:00
};
module.exports = claimShortId;