20 lines
517 B
JavaScript
20 lines
517 B
JavaScript
const { handleErrorResponse } = require('../../helpers/errorHandlers.js');
|
|
const db = require('../../models');
|
|
|
|
/*
|
|
|
|
route to get a short channel id from long channel Id
|
|
|
|
*/
|
|
|
|
const channelShortIdRoute = ({ ip, originalUrl, params }, res) => {
|
|
db.Certificate.getShortChannelIdFromLongChannelId(params.longId, params.name)
|
|
.then(shortId => {
|
|
res.status(200).json(shortId);
|
|
})
|
|
.catch(error => {
|
|
handleErrorResponse(originalUrl, ip, error, res);
|
|
});
|
|
};
|
|
|
|
module.exports = channelShortIdRoute;
|