aboutsummaryrefslogtreecommitdiff
path: root/web/app/model/Event.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-06-02 12:45:22 +0500
committerAbyss777 <abyss@fox5.ru>2016-06-02 12:45:22 +0500
commitd9e57775e5bb10e722d0043186308df05eea3296 (patch)
tree599b6836f717aec30859ee281a5dd57d06667490 /web/app/model/Event.js
parentbf296b4af4714a3fe62cd6f9fcff8ac29fcd0178 (diff)
downloadtrackermap-server-d9e57775e5bb10e722d0043186308df05eea3296.tar.gz
trackermap-server-d9e57775e5bb10e722d0043186308df05eea3296.tar.bz2
trackermap-server-d9e57775e5bb10e722d0043186308df05eea3296.zip
Show events in toast
Diffstat (limited to 'web/app/model/Event.js')
-rw-r--r--web/app/model/Event.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/web/app/model/Event.js b/web/app/model/Event.js
new file mode 100644
index 000000000..4dd3ea7ff
--- /dev/null
+++ b/web/app/model/Event.js
@@ -0,0 +1,40 @@
+/*
+ * 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.model.Event', {
+ extend: 'Ext.data.Model',
+ identifier: 'negative',
+
+ fields: [{
+ name: 'id',
+ type: 'int'
+ }, {
+ name: 'type',
+ type: 'string'
+ }, {
+ name: 'serverTime',
+ type: 'date',
+ dateFormat: 'c'
+ }, {
+ name: 'deviceId',
+ type: 'int'
+ }, {
+ name: 'positionId',
+ type: 'int'
+ }, {
+ name: 'attributes'
+ }]
+});