mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:20:33 +08:00
Merge pull request #4509 from davidtaylorhq/master
Added resolveService function to custom resolver
This commit is contained in:
commit
7f58ffb196
|
@ -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);
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue
Block a user