iw/static/js/store/Pages.js

18 lines
320 B
JavaScript

Ext.define('IW.store.Pages', {
extend: 'Ext.data.TreeStore',
model: 'IW.model.Page',
autoLoad: false,
clearOnLoad: true,
proxy: {
type: 'rest',
url: '/api/pages/',
reader: {
type: 'json',
},
writer: {
type: 'json',
}
}
});