mirror of https://github.com/mikkolehtisalo/iw.git
23 lines
437 B
JavaScript
23 lines
437 B
JavaScript
Ext.define('IW.model.Attachment', {
|
|
extend: 'Ext.data.Model',
|
|
fields: [
|
|
'Attachment_id',
|
|
'Wiki_id',
|
|
'Attachment',
|
|
'Mime',
|
|
'Filename',
|
|
'Modified',
|
|
'Status'
|
|
],
|
|
//idProperty: 'Attachment_id',
|
|
proxy: {
|
|
type: 'rest',
|
|
url: '/api/attachments/',
|
|
reader: {
|
|
type: 'json',
|
|
successProperty: 'success'
|
|
}
|
|
}
|
|
});
|
|
|