v0.14.0
- After a successful multi-PUT on a new model, the new id was not saved in the model.
- If
backendResourceName
is set on a model or store, it will try to auto generate theurl
based on that.
Example:
class Animal extends Model {
static backendResourceName = 'animal';
}
const animal = new Animal({ id: 1 });
animal.fetch();
// Will do a request to GET /animal/1/