diff --git a/core/frontend/services/routing/bootstrap.js b/core/frontend/services/routing/bootstrap.js index 764aa8216b..919e8e7916 100644 --- a/core/frontend/services/routing/bootstrap.js +++ b/core/frontend/services/routing/bootstrap.js @@ -168,6 +168,12 @@ module.exports.internal = { // and should not be consumed by the modules outside the frontend events.emit('router.created', this); + // CASE: there are router types which do not generate resource urls + // e.g. static route router, in this case we don't want ot notify the URL service + if (!router || !router.getPermalinks()) { + return; + } + _urlService.onRouterAddedType(router); }, routerUpdated: (router) => { diff --git a/core/frontend/services/url/UrlService.js b/core/frontend/services/url/UrlService.js index 54fa4d832a..ccc62e668b 100644 --- a/core/frontend/services/url/UrlService.js +++ b/core/frontend/services/url/UrlService.js @@ -76,13 +76,6 @@ class UrlService { * @param {ExpressRouter} router */ onRouterAddedType(router) { - // CASE: there are router types which do not generate resource urls - // e.g. static route router - // we are listening on the general `router.created` event - every router throws this event - if (!router || !router.getPermalinks()) { - return; - } - debug('Registering route: ', router.name); let urlGenerator = new UrlGenerator(router, this.queue, this.resources, this.urls, this.urlGenerators.length);