mirror of https://github.com/Sonarr/Sonarr
18 lines
451 B
JavaScript
18 lines
451 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
'History/Queue/QueueModel',
|
|
'Mixins/backbone.signalr.mixin'
|
|
], function (Backbone, QueueModel) {
|
|
var QueueCollection = Backbone.Collection.extend({
|
|
url : window.NzbDrone.ApiRoot + '/queue',
|
|
model: QueueModel
|
|
});
|
|
|
|
var collection = new QueueCollection().bindSignalR();
|
|
collection.fetch();
|
|
|
|
return collection;
|
|
});
|