aboutsummaryrefslogtreecommitdiff
path: root/web/app/store
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2015-05-18 14:40:45 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2015-05-18 14:40:45 +1200
commitcaab56810cd019482ce6055ab942dc07249f48fd (patch)
tree2bbdf4c212ef2d3a52d8199914a9ddaea0227843 /web/app/store
parentb512fa18b7ff40cacce09aa5db02f9c29b3e9250 (diff)
downloadtrackermap-server-caab56810cd019482ce6055ab942dc07249f48fd.tar.gz
trackermap-server-caab56810cd019482ce6055ab942dc07249f48fd.tar.bz2
trackermap-server-caab56810cd019482ce6055ab942dc07249f48fd.zip
Add report panel toolbar
Diffstat (limited to 'web/app/store')
-rw-r--r--web/app/store/Devices.js8
-rw-r--r--web/app/store/Positions.js29
2 files changed, 33 insertions, 4 deletions
diff --git a/web/app/store/Devices.js b/web/app/store/Devices.js
index 2b1af192f..24777de5a 100644
--- a/web/app/store/Devices.js
+++ b/web/app/store/Devices.js
@@ -21,10 +21,10 @@ Ext.define('Traccar.store.Devices', {
proxy: {
type: 'ajax',
api: {
- create : '/api/device/add',
- read : '/api/device/get',
- update : '/api/device/update',
- destroy : '/api/device/remove'
+ create: '/api/device/add',
+ read: '/api/device/get',
+ update: '/api/device/update',
+ destroy: '/api/device/remove'
},
reader: {
type: 'json',
diff --git a/web/app/store/Positions.js b/web/app/store/Positions.js
new file mode 100644
index 000000000..7de54a8d2
--- /dev/null
+++ b/web/app/store/Positions.js
@@ -0,0 +1,29 @@
+/*
+ * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+Ext.define('Traccar.store.Positions', {
+ extend: 'Ext.data.Store',
+ model: 'Traccar.model.Position',
+
+ proxy: {
+ type: 'ajax',
+ url: '/api/position/get',
+ reader: {
+ type: 'json',
+ rootProperty: 'data'
+ }
+ }
+});