loopback-boot/lib
Miroslav Bajtoš c4b09c6b7a executor: remove `Base` arg from model function
Simplify the contract for functions exported by `models/*.js` files
by removing the second argument `Base`. The base class can be accessed
using `ModelCtor.base`.

An updated example of a model js file:

```js
module.exports = function(Customer) {
  Customer.setup = function() {
    Customer.base.setup.apply(this, arguments);
    // etc.
  };
};
```
2014-07-22 10:59:50 +02:00
..
bundler.js Rework model configuration 2014-06-13 19:40:52 +02:00
compiler.js compiler: return a clone of instructions 2014-07-17 18:44:15 +02:00
config-loader.js Rename `models.json` to `model-config.json` 2014-07-15 11:09:39 +02:00
executor.js executor: remove `Base` arg from model function 2014-07-22 10:59:50 +02:00