Mercurial > lada > lada-client
view app/store/Info.js @ 535:60c5c796a57e
Don't edit 'Status' field
This is read from the Status entries belonging to the probe
author | Roland Geider <roland.geider@intevation.de> |
---|---|
date | Wed, 17 Dec 2014 14:57:03 +0100 |
parents | 850ccfe5f3c4 |
children |
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out * the documentation coming with IMIS-Labordaten-Application for details. */ /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out * the documentation coming with IMIS-Labordaten-Application for details. */ /** * Store for Info */ Ext.define('Lada.store.Info', { extend: 'Ext.data.Store', fields: [ 'user', 'groups', 'version' ], proxy: { type: 'rest', url: 'server/rest/info', reader: { type: 'json', root: 'data' } } });