redux-flute
Advanced tools
Changelog
0.5.0
Removed an unnecessary action dispatch every time an attribute changed.
Changelog
0.4.9
Better route interpolation: Added the ability for query object to assist in route generation. Passing in string or object as query will override existing properties in the record.
/* (Index route) /units/:unit_id/leads */
Lead.all({ unit_id: 123 }) /* /units/123/leads */
Lead.all({ unit_id: 123, foo: "bar" }) /* /units/123/leads?foo=bar */
Lead.all("?unit_id=123") /* /units/123/leads */
Lead.all("?unit_id=123&foo=bar") /* /units/123/leads?foo=bar */
Changelog
0.4.6
Fixed a bug that would always add updated members to the end of a collection, instead of updating them in the correct order.
Changelog
0.4.5
Fixed a bug that would not generate the correct route for an index if INDEX was not specified on singleton-type models.
Changelog
0.4.4
Fixed a bug that would resolve destroyed models instantly. Added the ability
to define an INDEX
route override and permissable as part of Model-level
routes configuration.
Changelog
0.4.3
Added more info on @FLUTE_REQUEST_INFO_*
events like 404 status and body.
Changelog
0.4.2
Fixed a bug that would prevent returning new records called with .create()
,
no attributes.