-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Deprecate unused initializers #4657
Conversation
ed6e092
to
1ab73b4
Compare
👍 |
@@ -10,5 +10,5 @@ import Ember from 'ember'; | |||
export default { | |||
name: 'data-adapter', | |||
before: 'store', | |||
initialize: Ember.K |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rebase needed?
rebased @locks |
|
||
|
||
|
||
let deprecatedInitializerNames = ['data-adapter', 'injectStore', 'transforms', 'store']; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
store
should not be included in this list.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nevermind. This code is correct. I got store
confused with the ember-data
initializer.
I was given feedback that this should go through an RFC so there is an official document on why this has been deprecated. |
Closes #4093