Merge pull request #441 from lbryio/multisite-page

added /multisite route
This commit is contained in:
Bill Bittner 2018-05-10 00:05:25 -07:00 committed by GitHub
commit 15ccccb63d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)
};