mirror of
https://github.com/discourse/discourse.git
synced 2025-02-21 03:57:10 +08:00
Support resolving models
This commit is contained in:
parent
008dd96721
commit
e322c9a9ff
@ -89,6 +89,10 @@ export default Ember.DefaultResolver.extend({
|
||||
return this.customResolve(parsedName) || this._super(parsedName);
|
||||
},
|
||||
|
||||
resolveModel(parsedName) {
|
||||
return this.customResolve(parsedName) || this._super(parsedName);
|
||||
},
|
||||
|
||||
resolveView(parsedName) {
|
||||
return this.findLoadingView(parsedName) || this.customResolve(parsedName) || this._super(parsedName);
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user