mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-03 19:08:20 -04:00
11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
'use strict';
|
|
|
|
define(['backbone',
|
|
'System/Info/DiskSpace/DiskSpaceModel'],
|
|
function(Backbone, DiskSpaceModel) {
|
|
return Backbone.Collection.extend({
|
|
|
|
url : window.NzbDrone.ApiRoot +'/diskspace',
|
|
model : DiskSpaceModel
|
|
});
|
|
}); |