loopback-boot/test/fixtures/browser-app/models
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
..
customer.js executor: remove `Base` arg from model function 2014-07-22 10:59:50 +02:00
customer.json Rework model configuration 2014-06-13 19:40:52 +02:00