mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
bc7906a7b2
This reverts commit cbb59a57db
.
18 lines
666 B
JavaScript
18 lines
666 B
JavaScript
const helpers = require('../../../frontend/helpers/register');
|
|
const routingService = require('../../../frontend/services/routing');
|
|
|
|
module.exports.getInstance = function getInstance() {
|
|
const appRouter = routingService.registry.getRouter('appRouter');
|
|
|
|
return {
|
|
helpers: {
|
|
register: helpers.registerThemeHelper.bind(helpers),
|
|
registerAsync: helpers.registerAsyncThemeHelper.bind(helpers)
|
|
},
|
|
// Expose the route service...
|
|
routeService: {
|
|
// This allows for mounting an entirely new Router at a path...
|
|
registerRouter: appRouter.mountRouter.bind(appRouter)
|
|
}
|
|
};
|
|
};
|