1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-07 15:23:48 +00:00
Radarr/UI/System/Update/UpdateCollection.js
2013-09-30 22:30:02 -07:00

11 lines
281 B
JavaScript

'use strict';
define(
[
'backbone',
'System/Update/UpdateModel'
], function (Backbone, UpdateModel) {
return Backbone.Collection.extend({
url : window.NzbDrone.ApiRoot + '/update',
model: UpdateModel
});
});