diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-10-08 18:53:12 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-10-08 18:53:12 +1300 |
commit | 401ee249a4c7b0de5eeaf32d1cbee4fd0d82a7a8 (patch) | |
tree | fcc70bbaa11e4e0b683134496007bdafc1110598 /web/app/store/Statistics.js | |
parent | 4966403aab46912dd29b8385b6050e95c47c295f (diff) | |
download | trackermap-web-401ee249a4c7b0de5eeaf32d1cbee4fd0d82a7a8.tar.gz trackermap-web-401ee249a4c7b0de5eeaf32d1cbee4fd0d82a7a8.tar.bz2 trackermap-web-401ee249a4c7b0de5eeaf32d1cbee4fd0d82a7a8.zip |
Implement statistics report view
Diffstat (limited to 'web/app/store/Statistics.js')
-rw-r--r-- | web/app/store/Statistics.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/web/app/store/Statistics.js b/web/app/store/Statistics.js new file mode 100644 index 00000000..e1b5e8ea --- /dev/null +++ b/web/app/store/Statistics.js @@ -0,0 +1,26 @@ +/* + * Copyright 2016 Anton Tananaev (anton.tananaev@gmail.com) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +Ext.define('Traccar.store.Statistics', { + extend: 'Ext.data.Store', + model: 'Traccar.model.Statistics', + + proxy: { + type: 'rest', + url: 'api/statistics' + } +}); |