apparently I forgot this
This commit is contained in:
parent
f6d011d763
commit
971b534177
1 changed files with 18 additions and 0 deletions
18
routes/p.js
Normal file
18
routes/p.js
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
var express = require('express');
|
||||||
|
var p = express.Router();
|
||||||
|
const con = require('../constants');
|
||||||
|
|
||||||
|
p.get('/', (req, res) => {
|
||||||
|
res.redirect('/portfolio');
|
||||||
|
});
|
||||||
|
p.get('/thaldrin', (req, res) => {
|
||||||
|
res.redirect('https://gitdab.com/r/thaldrin');
|
||||||
|
});
|
||||||
|
p.get('/website', (req, res) => {
|
||||||
|
res.redirect('https://gitdab.com/y/website');
|
||||||
|
});
|
||||||
|
p.get('/yiff', (req, res) => {
|
||||||
|
res.redirect('https://github.com/codepupper/yiff');
|
||||||
|
});
|
||||||
|
|
||||||
|
module.exports = p;
|
Loading…
Reference in a new issue