Filter Function
// Implement the filter function on your application service
helloFilterService.implement(
filter: function (type, id, data) {
return !!(data.user && data.user.phone);
}
}
});Last updated
Was this helpful?
// Implement the filter function on your application service
helloFilterService.implement(
filter: function (type, id, data) {
return !!(data.user && data.user.phone);
}
}
});Last updated
Was this helpful?
Was this helpful?