Added resolveService function to custom resolver

This commit is contained in:
David Taylor 2016-10-19 22:12:25 +01:00
parent 9f7b529495
commit 91da124769
1 changed files with 4 additions and 0 deletions

View File

@ -120,6 +120,10 @@ export function buildResolver(baseName) {
return this.customResolve(parsedName) || this._super(parsedName);
},
resolveService(parsedName) {
return this.customResolve(parsedName) || this._super(parsedName);
},
resolveRoute(parsedName) {
return this.findLoadingRoute(parsedName) || this.customResolve(parsedName) || this._super(parsedName);
},