loopback-boot/test/fixtures
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
..
browser-app executor: remove `Base` arg from model function 2014-07-22 10:59:50 +02:00
simple-app Rename `models.json` to `model-config.json` 2014-07-15 11:09:39 +02:00