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.
Sonarr/UI/AddSeries/RootFolders/Collection.js

18 lines
446 B

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