Skip to content

Commit

Permalink
Add a few more redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Aug 28, 2023
1 parent 984efce commit 3a2b8a4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,10 @@ app.get('/donate', (req, res) => res.redirect('https://muffin.ink/donate'));
app.get('/desktop', (req, res) => res.redirect('https://desktop.turbowarp.org/'));
app.get('/download', (req, res) => res.redirect('https://desktop.turbowarp.org/'));
app.get('/packager', (req, res) => res.redirect('https://packager.turbowarp.org/'));
app.get('/docs', (req, res) => res.redirect('https://docs.turbowarp.org/'));
app.get('/extensions', (req, res) => res.redirect('https://extensions.turbowarp.org/'));
app.get('/unpackager', (req, res) => res.redirect('https://turbowarp.github.io/unpackager/'));
app.get('/discover-addons', (req, res) => res.redirect('/editor'));

app.get('/users/:user', (req, res) => {
res.contentType('text/html');
Expand Down

0 comments on commit 3a2b8a4

Please sign in to comment.