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.
ngcp-csc/app/model/VoiceMailSettings.js

25 lines
494 B

Ext.define('NgcpCsc.model.VoiceMailSettings', {
extend: 'Ext.data.Model',
fields: [{
name: 'email',
type: 'string'
}, {
name: 'attach_rec',
type: 'string'
}, {
name: 'pin',
type: 'string'
}],
proxy: {
type: 'ajax',
url: Ext.manifest.resources.path + '/data/voicemailsSettings.json',
autoLoad: true,
reader: {
type: 'json',
rootProperty: 'data'
}
}
});