iw/static/js/store/UserGroupSearch.js

15 lines
312 B
JavaScript

Ext.define('IW.store.UserGroupSearch', {
extend: 'Ext.data.Store',
model: 'IW.model.UserGroupSearchItem',
autoLoad: false,
proxy: {
type: 'rest',
url: '/api/usergroupsearch/',
reader: {
type: 'json',
successProperty: 'success'
}
}
});