diff options
author | Abyss777 <abyss@fox5.ru> | 2016-06-26 00:51:33 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-06-26 00:51:33 +0500 |
commit | a25e7bd56c128fb2a1c673abf735b3e64706f9a8 (patch) | |
tree | a99d2cde526f97082d7bc95531772b6835064fcd /web/app/store/Notifications.js | |
parent | 67f46c80d3b5e34440a2644f52b81dddfbaba5fa (diff) | |
download | trackermap-server-a25e7bd56c128fb2a1c673abf735b3e64706f9a8.tar.gz trackermap-server-a25e7bd56c128fb2a1c673abf735b3e64706f9a8.tar.bz2 trackermap-server-a25e7bd56c128fb2a1c673abf735b3e64706f9a8.zip |
Added notifications via email
Added notifications settings
Diffstat (limited to 'web/app/store/Notifications.js')
-rw-r--r-- | web/app/store/Notifications.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/web/app/store/Notifications.js b/web/app/store/Notifications.js new file mode 100644 index 000000000..5dc8cb614 --- /dev/null +++ b/web/app/store/Notifications.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.Notifications', { + extend: 'Ext.data.Store', + model: 'Traccar.model.Notification', + + proxy: { + type: 'rest', + url: '/api/users/notifications' + } +}); |