ember-localstorage-adapter
ember-localstorage-adapter copied to clipboard
Name says it all.
Is it possible to get new version pushed out with depreciation warning fixes?
Hi! I'm building a hierarchical todo list, using [HollyApp](https://hollyapp.com/n/gdvPfMS9Fff4YgXh) as a good example. My only model looks like this: ``` coffee Task = DS.Model.extend title: DS.attr 'string' position: DS.attr 'number'...
Hey, I ran into an issue with ember-data-localstorage today after upgrading to Ember-Data 2.13 The pattern I use with local-storage is usually: ``` this.store.findRecord('local-model', 'some-id') .catch((error) => { ... .....
So I've been using adapter with "ember-data": "1.0.0-beta.10", but after upgrading to beta.14.1 I get the following error. I'm doing this: ``` this.store.findAll('session'); ``` The adapter and model are really...
For issue #154. I wasn't sure how to go about testing the 2 private methods that I overrode so I duplicated the LSAdapter test and changed some things in there...
Recently I found myself wanting to use sessionStorage instead of localStorage. What do you think about having this feature? I'd be happy to implement if you think it is a...
https://github.com/locks/ember-localstorage-adapter/issues/135 https://github.com/locks/ember-localstorage-adapter/issues/105
Hello, As of now the performance of the LSAdapter seems not great, due to the fact that each record fetched from / saved to the store is a direct copy...
If I store JS Date object, local storage just store '{ }'. Is there any solution to store Date object?