Ghost/core/server/web/shared/middlewares/index.js
Fabien 'egg' O'Carroll 8abd344048
Removed non-existent labs file export
refs 9e2b21578a

Since the ref'd commit the labs middleware was moved to the shared labs module
and this require path no longer exists. This does not break anything as any module
still using this would error when reading the labs property
2021-08-13 13:41:38 +01:00

34 lines
593 B
JavaScript

module.exports = {
get api() {
return require('./api');
},
get brute() {
return require('./brute');
},
get cacheControl() {
return require('./cache-control');
},
get customRedirects() {
return require('./custom-redirects');
},
get errorHandler() {
return require('./error-handler');
},
get maintenance() {
return require('./maintenance');
},
get prettyUrls() {
return require('./pretty-urls');
},
get urlRedirects() {
return require('./url-redirects');
}
};