added /multisite route

This commit is contained in:
bill bittner 2018-05-09 23:52:43 -07:00
parent 33b96099ad
commit dc98b653d7

View file

@ -9,5 +9,6 @@ module.exports = (app) => {
app.get('/trending', redirect('/popular'));
app.get('/popular', handlePageRequest);
app.get('/new', handlePageRequest);
app.get('/multisite', handlePageRequest);
app.get('/embed/:claimId/:name', handleEmbedRequest); // route to send embedable video player (for twitter)
};