filterMethod can also be a direct callback
This commit is contained in:
parent
097daf1deb
commit
cc0d376cc3
|
@ -473,9 +473,14 @@ Model.scopeRemoting = function(relationName, relation, define) {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
Model.nestRemoting = function(relationName, options) {
|
Model.nestRemoting = function(relationName, options, cb) {
|
||||||
var regExp = /^__([^_]+)__([^_]+)$/;
|
if (typeof options === 'function' && !cb) {
|
||||||
|
cb = options;
|
||||||
|
options = {};
|
||||||
|
}
|
||||||
options = options || {};
|
options = options || {};
|
||||||
|
|
||||||
|
var regExp = /^__([^_]+)__([^_]+)$/;
|
||||||
var relation = this.relations[relationName];
|
var relation = this.relations[relationName];
|
||||||
if (relation && relation.modelTo && relation.modelTo.sharedClass) {
|
if (relation && relation.modelTo && relation.modelTo.sharedClass) {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
@ -504,7 +509,7 @@ Model.nestRemoting = function(relationName, options) {
|
||||||
|
|
||||||
// A method should return the method name to use, if it is to be
|
// A method should return the method name to use, if it is to be
|
||||||
// included as a nested method - a falsy return value will skip.
|
// included as a nested method - a falsy return value will skip.
|
||||||
var filter = options.filterMethod || function(method, relation) {
|
var filter = cb || options.filterMethod || function(method, relation) {
|
||||||
var matches = method.name.match(regExp);
|
var matches = method.name.match(regExp);
|
||||||
if (matches) {
|
if (matches) {
|
||||||
return '__' + matches[1] + '__' + relation.name + '__' + matches[2];
|
return '__' + matches[1] + '__' + relation.name + '__' + matches[2];
|
||||||
|
|
Loading…
Reference in New Issue