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.
18 lines
455 B
18 lines
455 B
"use strict";
|
|
define(
|
|
[
|
|
'backbone',
|
|
'AddSeries/RootFolders/Model',
|
|
'mixins/backbone.signalr.mixin'
|
|
], function (Backbone, RootFolderModel) {
|
|
|
|
var rootFolderCollection = Backbone.Collection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/rootfolder',
|
|
model: RootFolderModel
|
|
});
|
|
|
|
var collection = new rootFolderCollection().BindSignalR();
|
|
|
|
return collection;
|
|
});
|