UNPKG

extjs-gpl

Version:

GPL licensed version of Sencha Ext JS

15 lines (12 loc) 321 B
/** * This view is used to present the details of a single Ticket. */ Ext.define('Ticket.model.User', { extend: 'Ticket.model.Base', fields: [ 'name', { name: 'organizationId', reference: 'Organization' }, { name: 'projectId', reference: 'Project' } ], manyToMany: 'Group' });