diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-12-02 14:27:10 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-12-02 14:27:10 +1300 |
commit | a05daf7d491e72a6272b2562f5bd21325795c3ab (patch) | |
tree | 4f634b8cbc491369eb911fa27db597417b298ff1 /web/app | |
parent | d64dca63369c702e8f276fab50d9b3201c437e00 (diff) | |
download | trackermap-server-a05daf7d491e72a6272b2562f5bd21325795c3ab.tar.gz trackermap-server-a05daf7d491e72a6272b2562f5bd21325795c3ab.tar.bz2 trackermap-server-a05daf7d491e72a6272b2562f5bd21325795c3ab.zip |
Add positions resource to the REST API
Diffstat (limited to 'web/app')
-rw-r--r-- | web/app/store/Positions.js | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/web/app/store/Positions.js b/web/app/store/Positions.js index 7de54a8d2..cfccd4f94 100644 --- a/web/app/store/Positions.js +++ b/web/app/store/Positions.js @@ -19,11 +19,7 @@ Ext.define('Traccar.store.Positions', { model: 'Traccar.model.Position', proxy: { - type: 'ajax', - url: '/api/position/get', - reader: { - type: 'json', - rootProperty: 'data' - } + type: 'rest', + url: '/api/rest/positions' } }); |