diff options
author | Abyss777 <abyss@fox5.ru> | 2016-06-02 12:45:22 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-06-02 12:45:22 +0500 |
commit | d9e57775e5bb10e722d0043186308df05eea3296 (patch) | |
tree | 599b6836f717aec30859ee281a5dd57d06667490 /web/app/store/Events.js | |
parent | bf296b4af4714a3fe62cd6f9fcff8ac29fcd0178 (diff) | |
download | trackermap-server-d9e57775e5bb10e722d0043186308df05eea3296.tar.gz trackermap-server-d9e57775e5bb10e722d0043186308df05eea3296.tar.bz2 trackermap-server-d9e57775e5bb10e722d0043186308df05eea3296.zip |
Show events in toast
Diffstat (limited to 'web/app/store/Events.js')
-rw-r--r-- | web/app/store/Events.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/web/app/store/Events.js b/web/app/store/Events.js new file mode 100644 index 000000000..f98764456 --- /dev/null +++ b/web/app/store/Events.js @@ -0,0 +1,25 @@ +/* + * 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.Events', { + extend: 'Ext.data.Store', + model: 'Traccar.model.Event', + + proxy: { + type: 'rest', + url: '/api/events' + } +});
\ No newline at end of file |