Removed unused comments route (#15238)

- the comments system lives at members/api/comments and was meant to be removed from here in an early refactor but was missed, possibly as a result of the huge rebase we did
This commit is contained in:
Hannah Wolfe 2022-08-15 15:45:42 +01:00 committed by GitHub
parent 22fd7f289c
commit 9f38e8c49c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,6 @@ module.exports = (routerConfig) => {
frontendApp.use(shared.middleware.urlRedirects.frontendSSLRedirect);
frontendApp.lazyUse('/members', require('../members'));
frontendApp.lazyUse('/comments', require('../comments'));
frontendApp.use('/', require('../../../frontend/web')(routerConfig));
return frontendApp;