mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 14:22:07 +03:00
19 lines
666 B
JavaScript
19 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)
|
||
|
}
|
||
|
};
|
||
|
};
|