You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/UI/AddSeries/RootFolders/Collection.js

18 lines
446 B

'use strict';
11 years ago
define(
[
'backbone',
11 years ago
'AddSeries/RootFolders/Model',
'Mixins/backbone.signalr.mixin'
], function (Backbone, RootFolderModel) {
11 years ago
var RootFolderCollection = Backbone.Collection.extend({
url : window.ApiRoot + '/rootfolder',
model: RootFolderModel
11 years ago
});
var collection = new RootFolderCollection().BindSignalR();
return collection;
11 years ago
});