In Backbone, the convention on options parameters is that the options object is not modified by the callee.
In Serverbone, the options are clobbered by, for example, fetch on the ACL models and collections. Furthermore, there are tests expecting that the options array is modified. The convention that options is an inout parameter in Serverbone methods may result in unnecessary surprise.
In Backbone, the convention on options parameters is that the options object is not modified by the callee. In Serverbone, the options are clobbered by, for example,
fetch
on the ACL models and collections. Furthermore, there are tests expecting that the options array is modified. The convention thatoptions
is an inout parameter in Serverbone methods may result in unnecessary surprise.