neutral/routes/link.js
Raphael ee556d859e
All checks were successful
Neutral/pipeline/head This commit looks good
revert 6f637968bdd5dea7f472e5a07517e072ed69715e
revert Version 1.0.0 - Basic Web Application
2024-12-29 14:53:26 +00:00

23 lines
480 B
JavaScript

var express = require('express');
var router = express.Router();
var path = require("path")
module.exports = router;
module.exports.ApplyLinks = class {
constructor(links) {
// Remove all routes
router.stack = []
for(var link of links) {
const url = link.url
router.get("/" + link.dest, (req,res,next) => {
res.redirect(302, url)
})
}
module.exports = router;
}
}