diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-07-15 22:55:09 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-07-15 22:55:09 +1200 |
commit | 946978e44223beb5b4b202c80dce6319f9a5cc14 (patch) | |
tree | f7f006121e3f4186dd0fbb3b9e8695cbd5826cf2 /web/app/model/Position.js | |
parent | fd8ac5fd906b398f86ecd04820fedb86b8e39a9a (diff) | |
download | trackermap-server-946978e44223beb5b4b202c80dce6319f9a5cc14.tar.gz trackermap-server-946978e44223beb5b4b202c80dce6319f9a5cc14.tar.bz2 trackermap-server-946978e44223beb5b4b202c80dce6319f9a5cc14.zip |
Store extra data in JSON format
Diffstat (limited to 'web/app/model/Position.js')
-rw-r--r-- | web/app/model/Position.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/model/Position.js b/web/app/model/Position.js index f80bece32..c2b83bb87 100644 --- a/web/app/model/Position.js +++ b/web/app/model/Position.js @@ -32,6 +32,6 @@ Ext.define('Traccar.model.Position', { { name: 'speed', type: 'float' }, { name: 'course', type: 'float' }, { name: 'address', type: 'string' }, - { name: 'other', type: 'string' } + { name: 'other' } ] }); |