-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Passing classes to store methods has been removed #272
Comments
Reopening for visibility |
Could you explain what your message above means? The latest release version doesn't work? |
I am reopening this issue so that it is clear it is a known issue and we don't get more duplicates. We are working on the EmberFire 1.13.x compatible release. The code is done, the documentation is being reviewed now. Use
|
Looks like it's going through the JSON-API serializer.. we dont use that for emberfire (we are based off the JSONSerializer). Check if you have a serializer in If you do have one, usually you just want to delete the file and let emberfire use the default. If you have some need for a custom serializer, make sure it extends from the right one: // app/serializers/post.js
import FirebaseSerializer from 'emberfire/serializers/firebase';
export default FirebaseSerializer.extend({
}); |
1.5.0 is released :) |
Hello,
Just updated to Ember-Data 1.13 and Ember 2.0.0-beta-1 and for the following error:
Uncaught Error: Assertion Failed: Passing classes to store methods has been removed. Please pass a dasherized string instead of krc@model:user:
After investigation, I think the error is between Ember-Data and Ember-Fire.
My code is:
`return this.store.findAll('user').then(function(user) {...``
The text was updated successfully, but these errors were encountered: