-
Notifications
You must be signed in to change notification settings - Fork 50
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
Several (quite important) fixes #73
base: master
Are you sure you want to change the base?
Conversation
updating from base code
…recation warning)
Conflicts: addon/serializers/application.js
3eeefd4
to
b15b7c6
Compare
…seem to be working fine here
@igorsantos07 can you squash this to a single commit? I also believe that the change from |
@mixonic I haven't worked on my project for a while, hence this is stopped. Besides that, do you want me to squash all commits into one? I may try but I think some of them are related to different issues, and thus should be separated. |
@igorsantos07 the merge commits etc should atleast go away. Please squash as you see fit! |
[1] Upgrading computed properties to comply with Ember updates
That piece of code was causing a deprecation warning. See http://emberjs.com/blog/2015/05/13/ember-1-12-released.html#toc_new-computed-syntax
[2] Fixing big problem with custom-named
belongsTo
relationsA relationship such as
problem: DS.belongsTo('item', { async: true })
was being stored withclassName: 'problem'
instead of'item'
.[3] Fixing
id
getter onhasMany
relationsIt seems the id property is not an attribute from the child relation.