mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 11:22:19 +03:00
Keep old shouldBackgroundReloadRecord
behaviour ready for 2.0 upgrade
no issue - adds `shouldBackgroundReloadRecord` override so that we keep the current behaviour (never background reload unless instigated manually) when we upgrade to Ember Data 2.0 which will always background-reload by default
This commit is contained in:
parent
87c1e51538
commit
0cd88bce7d
@ -1,3 +1,9 @@
|
|||||||
import EmbeddedRelationAdapter from 'ghost/adapters/embedded-relation-adapter';
|
import EmbeddedRelationAdapter from 'ghost/adapters/embedded-relation-adapter';
|
||||||
|
|
||||||
export default EmbeddedRelationAdapter.extend();
|
export default EmbeddedRelationAdapter.extend({
|
||||||
|
|
||||||
|
shouldBackgroundReloadRecord: function () {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
@ -5,6 +5,10 @@ export default DS.RESTAdapter.extend({
|
|||||||
host: window.location.origin,
|
host: window.location.origin,
|
||||||
namespace: ghostPaths().apiRoot.slice(1),
|
namespace: ghostPaths().apiRoot.slice(1),
|
||||||
|
|
||||||
|
shouldBackgroundReloadRecord: function () {
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
|
||||||
query: function (store, type, query) {
|
query: function (store, type, query) {
|
||||||
var id;
|
var id;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user