diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-09-15 11:41:08 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-09-15 11:41:08 +1200 |
commit | 34a70e81ecb613c3216fcdd581a9724216137b41 (patch) | |
tree | ee42bc77c1ade262e154f389ba7ebbb17212620b /web/app/model/Parameter.js | |
parent | 2fa0652494c511a87516fd71e363600b3ef0a1a6 (diff) | |
download | trackermap-server-34a70e81ecb613c3216fcdd581a9724216137b41.tar.gz trackermap-server-34a70e81ecb613c3216fcdd581a9724216137b41.tar.bz2 trackermap-server-34a70e81ecb613c3216fcdd581a9724216137b41.zip |
Rename parameter to attribute
Diffstat (limited to 'web/app/model/Parameter.js')
-rw-r--r-- | web/app/model/Parameter.js | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/web/app/model/Parameter.js b/web/app/model/Parameter.js deleted file mode 100644 index 30aa67719..000000000 --- a/web/app/model/Parameter.js +++ /dev/null @@ -1,30 +0,0 @@ -/* - * 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.model.Parameter', { - extend: 'Ext.data.Model', - - fields: [{ - name: 'priority', - type: 'int' - }, { - name: 'name', - type: 'string' - }, { - name: 'value', - type: 'string' - }] -}); |