facebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskype
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.
36 lines
518 B
36 lines
518 B
9 years ago
|
Ext.define('Rambox.model.Service', {
|
||
|
extend: 'Ext.data.Model'
|
||
|
|
||
|
,identifier: 'sequential'
|
||
|
,proxy: {
|
||
|
type: 'localstorage'
|
||
|
,id: 'services'
|
||
|
}
|
||
|
|
||
|
,fields: [{
|
||
|
name: 'id'
|
||
|
,type: 'int'
|
||
|
},{
|
||
|
name: 'type'
|
||
|
,type: 'string'
|
||
|
},{
|
||
|
name: 'name'
|
||
|
,type: 'string'
|
||
|
},{
|
||
|
name: 'url'
|
||
|
,type: 'string'
|
||
|
},{
|
||
|
name: 'align'
|
||
|
,type: 'string'
|
||
|
,defaultValue: 'left'
|
||
|
},{
|
||
|
name: 'notifications'
|
||
|
,type: 'boolean'
|
||
|
,defaultValue: true
|
||
|
},{
|
||
|
name: 'muted'
|
||
|
,type: 'boolean'
|
||
|
,defaultValue: false
|
||
|
}]
|
||
|
});
|