mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
df7e64fafa
refs #10790 - Moved /core/apps into core/frontend - Moved /core/server/helpers to /core/frontend/helpers along with /core/server/services/themes - Changed helper location in overrides - Moved /core/server/services/routing to /core/frontend/services - Moved /core/server/services/url to /core/frontend/services - Moved /core/server/data/meta to /core/frontend/meta - Moved /core/server/services/rss to /core/frontend/services - Moved /core/server/data/xml to /core/frontend/services
21 lines
664 B
JavaScript
21 lines
664 B
JavaScript
const router = require('./lib/router'),
|
|
registerHelpers = require('./lib/helpers'),
|
|
// Dirty requires
|
|
labs = require('../../../server/services/labs');
|
|
|
|
module.exports = {
|
|
activate(ghost) {
|
|
// routeKeywords.subscribe: 'subscribe'
|
|
const subscribeRoute = '/subscribe/';
|
|
// TODO, how to do all this only if the Subscribers flag is set?!
|
|
registerHelpers(ghost);
|
|
|
|
ghost.routeService.registerRouter(subscribeRoute, function labsEnabledRouter(req, res, next) {
|
|
if (labs.isSet('subscribers')) {
|
|
return router.apply(this, arguments);
|
|
}
|
|
|
|
next();
|
|
});
|
|
}
|
|
};
|