diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-06 23:18:49 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-06 23:18:49 +1200 |
commit | eaa0044002aeaff0b5df11f8463a068a6ff2284d (patch) | |
tree | fb9cec4ad52ac09f0b75061a41947dbc89b2cf81 /web/app/store/Users.js | |
parent | 40107a7886412c4582ea9a9ee946f454e28a1178 (diff) | |
download | trackermap-server-eaa0044002aeaff0b5df11f8463a068a6ff2284d.tar.gz trackermap-server-eaa0044002aeaff0b5df11f8463a068a6ff2284d.tar.bz2 trackermap-server-eaa0044002aeaff0b5df11f8463a068a6ff2284d.zip |
Add user management window
Diffstat (limited to 'web/app/store/Users.js')
-rw-r--r-- | web/app/store/Users.js | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/web/app/store/Users.js b/web/app/store/Users.js new file mode 100644 index 000000000..004dc727e --- /dev/null +++ b/web/app/store/Users.js @@ -0,0 +1,38 @@ +/* + * 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.Users', { + extend: 'Ext.data.Store', + model: 'Traccar.model.User', + + proxy: { + type: 'ajax', + api: { + create: '/api/user/add', + read: '/api/user/get', + update: '/api/user/update', + destroy: '/api/user/remove' + }, + reader: { + type: 'json', + rootProperty: 'data' + }, + writer: { + type: 'json', + writeAllFields: true + } + } +}); |