Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 769 Bytes

File metadata and controls

23 lines (20 loc) · 769 Bytes

Change Log

All user visible changes to this project will be documented in this file. This project adheres to Semantic Versioning, as described for Rust libraries in RFC #1105

Unreleased

Changed

  • setup now takes an object with the properties name, resource_name, url and params instead of the three params resource_name, url and params. For example;
    this.get('poll').setup('contacts', 'http://some_domain.com/contacts/${contact_id}');
    becomes;
    this.get('poll').setup({
      name: 'contactsPoll',
      resource_name: 'contacts',
      url: 'http://some_domain.com/contacts/${contact_id}'
    });