From 6ce1f7d481aec69107ef34924bda57fafbce67ed Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Thu, 15 Oct 2015 15:26:25 +1300 Subject: Service call to get all devices --- web/app/store/AllDevices.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 web/app/store/AllDevices.js (limited to 'web/app/store/AllDevices.js') diff --git a/web/app/store/AllDevices.js b/web/app/store/AllDevices.js new file mode 100644 index 000000000..a591b6561 --- /dev/null +++ b/web/app/store/AllDevices.js @@ -0,0 +1,32 @@ +/* + * 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.AllDevices', { + extend: 'Ext.data.Store', + model: 'Traccar.model.Device', + + proxy: { + type: 'ajax', + url: '/api/device/get', + extraParams: { + all: true + }, + reader: { + type: 'json', + rootProperty: 'data' + } + } +}); -- cgit v1.2.3