mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
18 lines
425 B
JavaScript
18 lines
425 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
'Commands/CommandModel',
|
|
'Mixins/backbone.signalr.mixin'
|
|
], function (Backbone, CommandModel) {
|
|
|
|
var CommandCollection = Backbone.Collection.extend({
|
|
url : window.ApiRoot + '/command',
|
|
model: CommandModel
|
|
});
|
|
|
|
var collection = new CommandCollection().bindSignalR();
|
|
|
|
return collection;
|
|
});
|