partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

SystemInformationRecord.js (407B)


      1 Ext.define('PartKeepr.SystemInformationRecord', {
      2     extend: 'PartKeepr.data.HydraModel',
      3     alias: 'schema.PartKeepr.SystemInformationRecord',
      4 
      5     fields: [
      6                 { name: 'name', type: 'string'},
      7                 { name: 'category', type: 'string'},
      8                 { name: 'value', type: 'string'},
      9     ],
     10 
     11 
     12 
     13     proxy: {
     14         type: "Hydra",
     15         url: '/api/system_information'
     16     }
     17 });