1
0
mirror of https://codeberg.org/teddit/teddit synced 2025-02-09 08:38:51 +01:00

8 lines
195 B
JavaScript
Raw Normal View History

2021-09-02 21:00:26 +01:00
const galleryRoute = require('express').Router();
galleryRoute.get('/gallery/:id', (req, res, next) => {
return res.redirect(`/comments/${req.params.id}`);
});
module.exports = galleryRoute;