Radarr/src/UI/System/Info/DiskSpace/DiskSpaceCollection.js
Mark McDowall 43a70f4479 Moved disk space and about to new info tab
New: Disk space visible in the UI under System Info
2013-10-11 16:18:04 -07:00

8 lines
No EOL
247 B
JavaScript

'use strict';
define(['backbone', 'System/Info/DiskSpace/DiskSpaceModel'],
function(Backbone, DiskSpaceModel) {
return Backbone.Collection.extend({
url:window.NzbDrone.ApiRoot +'/diskspace',
model: DiskSpaceModel
});
});