We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
http://emberjs.com/blog/2016/01/12/ember-data-2-3-released.html
As mentioned in the above blog post, serializer EmbeddedRecordsMixin is not part of public API.
EmbeddedRecordsMixin
The text was updated successfully, but these errors were encountered:
Unfortunately this is missing, but it is addressed in #4125.
Until this is available in the next release, you can use DS.EmbeddedRecordsMixin:
DS.EmbeddedRecordsMixin
// app/serializers/application.js import DS from "ember-data"; import RESTSerializer from "ember-data/serializers/rest"; export default RESTSerializer.extend(DS.EmbeddedRecordsMixin, { // ... });
Sorry, something went wrong.
Since #4125 has been merged, you can now import the EmbeddedRecordsMixin via modules:
import RESTSerializer from "ember-data/serializers/rest"; import EmbeddedRecords from "ember-data/serializers/embedded-records-mixin"; export default RESTSerializer.exend(EmbeddedRecordsMixin, { // ... });
No branches or pull requests
http://emberjs.com/blog/2016/01/12/ember-data-2-3-released.html
As mentioned in the above blog post, serializer
EmbeddedRecordsMixin
is not part of public API.The text was updated successfully, but these errors were encountered: