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.
27 lines
652 B
27 lines
652 B
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
'Commands/CommandModel',
|
|
'Mixins/backbone.signalr.mixin'
|
|
], function (Backbone, CommandModel) {
|
|
|
|
var CommandCollection = Backbone.Collection.extend({
|
|
url : window.NzbDrone.ApiRoot + '/command',
|
|
model: CommandModel,
|
|
|
|
findCommand: function (command) {
|
|
return this.find(function (model) {
|
|
return model.isSameCommand(command);
|
|
});
|
|
}
|
|
|
|
});
|
|
|
|
var collection = new CommandCollection().bindSignalR();
|
|
|
|
collection.fetch();
|
|
|
|
return collection;
|
|
});
|