feat: remove /assets/stylesheet.css

This commit is contained in:
Barış Soner Uşaklı
2020-07-29 08:20:41 -04:00
parent d580cf01c3
commit 762b0be4b4

View File

@@ -167,19 +167,6 @@ function addCoreRoutes(app, router, middleware) {
app.use(relativePath + '/assets/client-' + skin + '.css', middleware.buildSkinAsset);
});
// only warn once
var warned = new Set();
// DEPRECATED (v1.12.0)
app.use(relativePath + '/assets/stylesheet.css', function (req, res) {
if (!warned.has(req.path)) {
winston.warn('[deprecated] Accessing `/assets/stylesheet.css` is deprecated to be REMOVED in NodeBB v1.12.0. ' +
'Use `/assets/client.css` to access this file');
warned.add(req.path);
}
res.redirect(relativePath + '/assets/client.css?' + meta.config['cache-buster']);
});
app.use(controllers['404'].handle404);
app.use(controllers.errors.handleURIErrors);
app.use(controllers.errors.handleErrors);