mirror of
https://github.com/discourse/discourse.git
synced 2025-05-05 06:54:35 +08:00
Added resolveService function to custom resolver
This commit is contained in:
parent
9f7b529495
commit
91da124769
@ -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…
x
Reference in New Issue
Block a user