Skip to content

Releases: FacultyCreative/ngActiveResource

v0.4.8

23 Jan 20:19
Compare
Choose a tag to compare
Release v0.4.8

v0.4.7

22 Jan 16:01
Compare
Choose a tag to compare

Intelligent saving:
$save calls the createURL if the object it's saving contains no primary key, and the updateURL if the object it's saving does. This can still be overridden using the parameters to $save

v0.4.6

21 Jan 21:19
Compare
Choose a tag to compare
Release v0.4.6

v0.4.5

21 Jan 18:34
Compare
Choose a tag to compare

Add inherits method:

function Post() {}
Post.inherits(ActiveResource.Base);

v0.4.4

21 Jan 18:22
Compare
Choose a tag to compare

Fix issue where falsy computed properties were not being computed.

v0.4.3

21 Jan 18:02
Compare
Choose a tag to compare

Following the syntax of Ember.js' computed properties, you can create properties
that auto-magically update with or without Angular's two-way binding:

function TShirt() {
  this.number('price');

  this.computedProperty('salePrice', function() {
    return this.price - (this.price * 0.2);
  }, 'price');

  this.computedProperty('superSalePrice', function() {
    return this.price - this.salePrice;
  }, ['price', 'salePrice']);
}

v0.4.2

19 Jan 08:34
Compare
Choose a tag to compare

Add property setting methods:

instance.string('propertyName');
instance.boolean('propertyName');
instance.number('propertyName');
instance.integer('propertyName');

v0.4.1

19 Jan 03:34
Compare
Choose a tag to compare

Add compatibility for MongoDB primary keys as URL parameters

v0.4.0

17 Jan 21:36
Compare
Choose a tag to compare

Release new API using indexURL to search resources, and showURL to display an individual resource.

v0.3.5

16 Jan 22:33
Compare
Choose a tag to compare

Update query interface options with forceGET and noInstanceEndpoint