We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9050432 commit a0ddbaaCopy full SHA for a0ddbaa
packages/ember-cli-fastboot/addon/services/fastboot.js
@@ -89,13 +89,13 @@ const FastBootService = Service.extend({
89
return RequestObject.create({ request: get(this, '_fastbootInfo.request') });
90
}),
91
92
+ // this getter/setter pair is to avoid deprecation from [RFC - 680](https://github.com/emberjs/rfcs/pull/680)
93
_fastbootInfo: computed({
94
get() {
95
if (this.__fastbootInfo) {
96
return this.__fastbootInfo;
97
}
98
- // this getter is to avoid deprecation from [RFC - 680](https://github.com/emberjs/rfcs/pull/680)
99
return getOwner(this).lookup('info:-fastboot');
100
},
101
set(_key, value) {
0 commit comments