From 401ee249a4c7b0de5eeaf32d1cbee4fd0d82a7a8 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 8 Oct 2016 18:53:12 +1300 Subject: Implement statistics report view --- web/app/store/Statistics.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 web/app/store/Statistics.js (limited to 'web/app/store') diff --git a/web/app/store/Statistics.js b/web/app/store/Statistics.js new file mode 100644 index 0000000..e1b5e8e --- /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 . + */ + +Ext.define('Traccar.store.Statistics', { + extend: 'Ext.data.Store', + model: 'Traccar.model.Statistics', + + proxy: { + type: 'rest', + url: 'api/statistics' + } +}); -- cgit v1.2.3