mirror of https://github.com/sipwise/ngcp-csc.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
976 B
47 lines
976 B
Ext.define('NgcpCsc.model.GridFilters', {
|
|
extend: 'Ext.data.Model',
|
|
|
|
fields: [
|
|
'from_date',
|
|
'to_date',
|
|
'type',
|
|
'direction',
|
|
'missed',
|
|
'answered',
|
|
'search_term',
|
|
'name',
|
|
'seats_extension',
|
|
'groups_extension',
|
|
'groups',
|
|
'numbers',
|
|
'phone_devices',
|
|
'hunt_policy',
|
|
'hunt_timeout',
|
|
'enabled',
|
|
'disabled',
|
|
'device',
|
|
'mac',
|
|
'status',
|
|
'headerBarFieldInput',
|
|
'call',
|
|
'voicemail',
|
|
'reminder',
|
|
'fax',
|
|
'convFilterHideState',
|
|
'pbxSeatsFilterHideState',
|
|
'pbxGroupsFilterHideState',
|
|
'pbxDevicesFilterHideState',
|
|
'freeSearchState'
|
|
],
|
|
|
|
proxy: {
|
|
type: 'ajax',
|
|
url: '/resources/data/gridfilters.json',
|
|
autoLoad: true,
|
|
reader: {
|
|
type: 'json',
|
|
rootProperty: 'data'
|
|
}
|
|
}
|
|
});
|