mirror of https://github.com/lidarr/Lidarr
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;
|
|||
|
});
|