[WebUI] Add missing column entries to Torrent Record
This commit is contained in:
parent
7c3d44c42e
commit
d7bb5dfa8b
|
@ -1,6 +1,6 @@
|
||||||
/*!
|
/*!
|
||||||
* Deluge.data.TorrentRecord.js
|
* Deluge.data.TorrentRecord.js
|
||||||
*
|
*
|
||||||
* Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
|
* Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -91,5 +91,23 @@ Deluge.data.Torrent = Ext.data.Record.create([{
|
||||||
}, {
|
}, {
|
||||||
name: 'tracker_host',
|
name: 'tracker_host',
|
||||||
type: 'string'
|
type: 'string'
|
||||||
|
}, {
|
||||||
|
name: 'save_path',
|
||||||
|
type: 'string'
|
||||||
|
}, {
|
||||||
|
name: 'total_done',
|
||||||
|
type: 'int'
|
||||||
|
}, {
|
||||||
|
name: 'total_uploaded',
|
||||||
|
type: 'int'
|
||||||
|
}, {
|
||||||
|
name: 'max_download_speed',
|
||||||
|
type: 'int'
|
||||||
|
}, {
|
||||||
|
name: 'max_upload_speed',
|
||||||
|
type: 'int'
|
||||||
|
}, {
|
||||||
|
name: 'seeds_peers_ratio',
|
||||||
|
type: 'float'
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in New Issue