mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
refs #9192 - Instead of `setupRoutes` function in apps that gets passed a router, there is now a registerRouter function as part of the proxy - Moved towards a route service, which will know about all routes - Using classes to abstract away shared behaviour Notes: - changing the app proxy didn't result in a test failure! - structure of route service is totally new and may change a lot yet
15 lines
377 B
JavaScript
15 lines
377 B
JavaScript
/**
|
|
* An instance of router that is provided to Apps, to mount routes into.
|
|
*/
|
|
|
|
var debug = require('ghost-ignition').debug('services:routes:app'),
|
|
Router = require('./base/Router');
|
|
|
|
class AppRouter extends Router {
|
|
registerRouter(path, router) {
|
|
debug('registerRouter for', path);
|
|
this.router.use(path, router);
|
|
}
|
|
}
|
|
|
|
module.exports = AppRouter;
|